public enum TransitionTarget extends java.lang.Enum<TransitionTarget>
| Enum Constant and Description |
|---|
GROUP
Specifies that the time zone transition target is a group of time zone transitions.
|
PERIOD
Specifies that the time zone transition target is a time zone period.
|
| Modifier and Type | Method and Description |
|---|---|
static TransitionTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransitionTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransitionTarget PERIOD
public static final TransitionTarget GROUP
public static TransitionTarget[] values()
for (TransitionTarget c : TransitionTarget.values()) System.out.println(c);
public static TransitionTarget valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null