public enum HistoryType extends Enum<HistoryType>
| Enum Constant and Description |
|---|
DEEP
The state enters into its last active sub-state.
|
NONE
The state enters into its initial sub-state.
|
SHALLOW
The state enters into its last active sub-state.
|
| Modifier and Type | Method and Description |
|---|---|
static HistoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistoryType NONE
public static final HistoryType SHALLOW
public static final HistoryType DEEP
public static HistoryType[] values()
for (HistoryType c : HistoryType.values()) System.out.println(c);
public static HistoryType 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 © 2012 bbv Software Services AG. All Rights Reserved.