public enum SchemalessTimestampType extends Enum<SchemalessTimestampType>
| Enum Constant and Description |
|---|
HOURS |
MICRO_SECONDS |
MILLI_SECONDS |
MINUTES |
NANO_SECONDS |
NOT_CONFIGURED |
SECONDS |
| Modifier and Type | Method and Description |
|---|---|
static SchemalessTimestampType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemalessTimestampType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemalessTimestampType NOT_CONFIGURED
public static final SchemalessTimestampType HOURS
public static final SchemalessTimestampType MINUTES
public static final SchemalessTimestampType SECONDS
public static final SchemalessTimestampType MILLI_SECONDS
public static final SchemalessTimestampType MICRO_SECONDS
public static final SchemalessTimestampType NANO_SECONDS
public static SchemalessTimestampType[] values()
for (SchemalessTimestampType c : SchemalessTimestampType.values()) System.out.println(c);
public static SchemalessTimestampType 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 © 2022. All rights reserved.