public static enum Extract.Field extends java.lang.Enum<Extract.Field>
Enum Constant and Description |
---|
CENTURY |
DAY |
DAY_OF_MONTH |
DAY_OF_WEEK |
DAY_OF_YEAR |
DOW |
DOY |
EPOCH |
HOUR |
MINUTE |
MONTH |
QUARTER |
SECOND |
TIMEZONE_HOUR |
TIMEZONE_MINUTE |
WEEK |
YEAR |
Modifier and Type | Method and Description |
---|---|
static Extract.Field |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Extract.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Extract.Field CENTURY
public static final Extract.Field YEAR
public static final Extract.Field QUARTER
public static final Extract.Field MONTH
public static final Extract.Field WEEK
public static final Extract.Field DAY
public static final Extract.Field DAY_OF_MONTH
public static final Extract.Field DAY_OF_WEEK
public static final Extract.Field DOW
public static final Extract.Field DAY_OF_YEAR
public static final Extract.Field DOY
public static final Extract.Field HOUR
public static final Extract.Field MINUTE
public static final Extract.Field SECOND
public static final Extract.Field TIMEZONE_HOUR
public static final Extract.Field TIMEZONE_MINUTE
public static final Extract.Field EPOCH
public static Extract.Field[] values()
for (Extract.Field c : Extract.Field.values()) System.out.println(c);
public static Extract.Field valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null