protected static enum Time.TimeField extends Enum<Time.TimeField> implements EnumType
| Enum Constant and Description |
|---|
GENERAL_TIME |
UTC_TIME |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getValue() |
static Time.TimeField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Time.TimeField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Time.TimeField UTC_TIME
public static final Time.TimeField GENERAL_TIME
public static Time.TimeField[] values()
for (Time.TimeField c : Time.TimeField.values()) System.out.println(c);
public static Time.TimeField 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 © 2014–2017 The Apache Software Foundation. All rights reserved.