public enum ZoneAlignment extends Enum<ZoneAlignment>
Enum Constant and Description |
---|
CROSS_ZONE |
SAME_ZONE |
UNKNOWN |
UNSET |
Modifier and Type | Method and Description |
---|---|
static ZoneAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZoneAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZoneAlignment UNSET
public static final ZoneAlignment UNKNOWN
public static final ZoneAlignment SAME_ZONE
public static final ZoneAlignment CROSS_ZONE
public static ZoneAlignment[] values()
for (ZoneAlignment c : ZoneAlignment.values()) System.out.println(c);
public static ZoneAlignment 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 null