public static enum TimeUtil.TimestampType extends Enum<TimeUtil.TimestampType>
| Enum Constant and Description |
|---|
TIMESTAMP_LTZ |
TIMESTAMP_NTZ |
TIMESTAMP_TZ |
| Modifier and Type | Method and Description |
|---|---|
static TimeUtil.TimestampType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeUtil.TimestampType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeUtil.TimestampType TIMESTAMP_NTZ
public static final TimeUtil.TimestampType TIMESTAMP_TZ
public static final TimeUtil.TimestampType TIMESTAMP_LTZ
public static TimeUtil.TimestampType[] values()
for (TimeUtil.TimestampType c : TimeUtil.TimestampType.values()) System.out.println(c);
public static TimeUtil.TimestampType 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 © 2020. All rights reserved.