Package io.trino.sql.tree
Enum IntervalDayTimeDataType.Field
- java.lang.Object
-
- java.lang.Enum<IntervalDayTimeDataType.Field>
-
- io.trino.sql.tree.IntervalDayTimeDataType.Field
-
- All Implemented Interfaces:
Serializable,Comparable<IntervalDayTimeDataType.Field>
- Enclosing class:
- IntervalDayTimeDataType
public static enum IntervalDayTimeDataType.Field extends Enum<IntervalDayTimeDataType.Field>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntervalDayTimeDataType.FieldvalueOf(String name)Returns the enum constant of this type with the specified name.static IntervalDayTimeDataType.Field[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YEAR
public static final IntervalDayTimeDataType.Field YEAR
-
MONTH
public static final IntervalDayTimeDataType.Field MONTH
-
DAY
public static final IntervalDayTimeDataType.Field DAY
-
HOUR
public static final IntervalDayTimeDataType.Field HOUR
-
MINUTE
public static final IntervalDayTimeDataType.Field MINUTE
-
SECOND
public static final IntervalDayTimeDataType.Field SECOND
-
-
Method Detail
-
values
public static IntervalDayTimeDataType.Field[] 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 (IntervalDayTimeDataType.Field c : IntervalDayTimeDataType.Field.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntervalDayTimeDataType.Field valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-