blob: f30923bb0b24b1da2e49831c8998e53e6a1b6019 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.carbondata.core.preagg;
/**
* enum for timeseries function
*/
public enum TimeSeriesFunctionEnum {
SECOND("second", 0),
MINUTE("minute", 1),
FIVE_MINUTE("five_minute", 2),
TEN_MINUTE("ten_minute", 3),
FIFTEEN_MINUTE("fifteen_minute", 4),
THIRTY_MINUTE("thirty_minute", 5),
HOUR("hour", 6),
DAY("day", 7),
WEEK("week", 8),
MONTH("month", 9),
YEAR("year", 10);
/**
* name of the function
*/
private String name;
/**
* ordinal for function
*/
private int ordinal;
TimeSeriesFunctionEnum(String name, int ordinal) {
this.name = name;
this.ordinal = ordinal;
}
public String getName() {
return name;
}
public int getOrdinal() {
return ordinal;
}
}