public enum EDTType extends Enum<EDTType>
| Enum Constant and Description |
|---|
LOCAL_DATE |
LOCAL_DATE_TIME |
LOCAL_TIME |
OFFSET_DATE_TIME |
ZONED_DATE_TIME |
| Modifier and Type | Method and Description |
|---|---|
static EDTType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EDTType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EDTType LOCAL_DATE
public static final EDTType LOCAL_TIME
public static final EDTType LOCAL_DATE_TIME
public static final EDTType ZONED_DATE_TIME
public static final EDTType OFFSET_DATE_TIME
public static EDTType[] values()
for (EDTType c : EDTType.values()) System.out.println(c);
public static EDTType 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–2020 Philip Helger. All rights reserved.