
public static enum ExampleEnumState.ExampleTransition extends Enum<ExampleEnumState.ExampleTransition>
| Enum Constant and Description |
|---|
tCONFIGURING |
tENDED |
tPAUSED |
tRESET |
tRUNNING |
| Modifier and Type | Field and Description |
|---|---|
Transition<ExampleEnumState> |
elt |
| Modifier and Type | Method and Description |
|---|---|
static ExampleEnumState.ExampleTransition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExampleEnumState.ExampleTransition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExampleEnumState.ExampleTransition tRUNNING
public static final ExampleEnumState.ExampleTransition tPAUSED
public static final ExampleEnumState.ExampleTransition tENDED
public static final ExampleEnumState.ExampleTransition tCONFIGURING
public static final ExampleEnumState.ExampleTransition tRESET
public Transition<ExampleEnumState> elt
public static ExampleEnumState.ExampleTransition[] values()
for (ExampleEnumState.ExampleTransition c : ExampleEnumState.ExampleTransition.values()) System.out.println(c);
public static ExampleEnumState.ExampleTransition 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 © 2009–2019 Waarp. All rights reserved.