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