public static enum Extract.Field extends Enum<Extract.Field>
| Enum Constant and Description |
|---|
DAY |
DAY_OF_MONTH |
DAY_OF_WEEK |
DAY_OF_YEAR |
DOW |
DOY |
HOUR |
MINUTE |
MONTH |
QUARTER |
SECOND |
TIMEZONE_HOUR |
TIMEZONE_MINUTE |
WEEK |
YEAR |
YEAR_OF_WEEK |
YOW |
| Modifier and Type | Method and Description |
|---|---|
static Extract.Field |
valueOf(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 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 YEAR_OF_WEEK
public static final Extract.Field YOW
public static final Extract.Field HOUR
public static final Extract.Field MINUTE
public static final Extract.Field SECOND
public static final Extract.Field TIMEZONE_MINUTE
public static final Extract.Field TIMEZONE_HOUR
public static Extract.Field[] values()
for (Extract.Field c : Extract.Field.values()) System.out.println(c);
public static Extract.Field valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2023. All rights reserved.