Package org.apache.calcite.avatica.util
Enum TimeUnit
- java.lang.Object
-
- java.lang.Enum<TimeUnit>
-
- org.apache.calcite.avatica.util.TimeUnit
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TimeUnit>
public enum TimeUnit extends java.lang.Enum<TimeUnit>
Enumeration of time units used to construct an interval.Only
YEAR,MONTH,DAY,HOUR,MINUTE,SECONDcan be the unit of a SQL interval.The others (
QUARTER,WEEK,MILLISECOND,DOW,DOY,EPOCH,DECADE,CENTURY,MILLENNIUM,MICROSECOND,NANOSECOND,ISODOWandISOYEAR) are convenient to use internally, when converting to and from UNIX timestamps. And also may be arguments to theEXTRACT,TIMESTAMPADDandTIMESTAMPDIFFfunctions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CENTURYDAYDECADEDOWDOYEPOCHHOURISODOWISOYEARMICROSECONDMILLENNIUMMILLISECONDMINUTEMONTHNANOSECONDQUARTERSECONDWEEKYEAR
-
Field Summary
Fields Modifier and Type Field Description private static TimeUnit[]CACHED_VALUESprivate java.math.BigDecimallimitjava.math.BigDecimalmultipliercharseparatorbooleanyearMonth
-
Constructor Summary
Constructors Modifier Constructor Description privateTimeUnit(boolean yearMonth, char separator, java.math.BigDecimal multiplier, java.math.BigDecimal limit)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TimeUnitgetValue(int ordinal)Returns the TimeUnit associated with an ordinal.booleanisValidValue(java.math.BigDecimal field)Returns whether a given value is valid for a field of this time unit.static TimeUnitvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TimeUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YEAR
public static final TimeUnit YEAR
-
MONTH
public static final TimeUnit MONTH
-
DAY
public static final TimeUnit DAY
-
HOUR
public static final TimeUnit HOUR
-
MINUTE
public static final TimeUnit MINUTE
-
SECOND
public static final TimeUnit SECOND
-
QUARTER
public static final TimeUnit QUARTER
-
ISOYEAR
public static final TimeUnit ISOYEAR
-
WEEK
public static final TimeUnit WEEK
-
MILLISECOND
public static final TimeUnit MILLISECOND
-
MICROSECOND
public static final TimeUnit MICROSECOND
-
NANOSECOND
public static final TimeUnit NANOSECOND
-
DOW
public static final TimeUnit DOW
-
ISODOW
public static final TimeUnit ISODOW
-
DOY
public static final TimeUnit DOY
-
EPOCH
public static final TimeUnit EPOCH
-
DECADE
public static final TimeUnit DECADE
-
CENTURY
public static final TimeUnit CENTURY
-
MILLENNIUM
public static final TimeUnit MILLENNIUM
-
-
Field Detail
-
yearMonth
public final boolean yearMonth
-
separator
public final char separator
-
multiplier
public final java.math.BigDecimal multiplier
-
limit
private final java.math.BigDecimal limit
-
CACHED_VALUES
private static final TimeUnit[] CACHED_VALUES
-
-
Method Detail
-
values
public static TimeUnit[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimeUnit c : TimeUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeUnit valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public static TimeUnit getValue(int ordinal)
Returns the TimeUnit associated with an ordinal. The value returned is null if the ordinal is not a member of the TimeUnit enumeration.
-
isValidValue
public boolean isValidValue(java.math.BigDecimal field)
Returns whether a given value is valid for a field of this time unit.- Parameters:
field- Field value- Returns:
- Whether value
-
-