public static enum SmcElement.TransType extends java.lang.Enum<SmcElement.TransType>
Enum Constant and Description |
---|
TRANS_NOT_SET
Transitions may be instantiated before all information
is gathered.
|
TRANS_POP
Pop the state off the state stack and make it the next
state.
|
TRANS_PUSH
This transition pushes the current state on top of the
state stack before setting the next state.
|
TRANS_SET
A standard transition which goes from one state to the
next.
|
Modifier and Type | Method and Description |
---|---|
static SmcElement.TransType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SmcElement.TransType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmcElement.TransType TRANS_NOT_SET
public static final SmcElement.TransType TRANS_SET
public static final SmcElement.TransType TRANS_PUSH
public static final SmcElement.TransType TRANS_POP
public static SmcElement.TransType[] values()
for (SmcElement.TransType c : SmcElement.TransType.values()) System.out.println(c);
public static SmcElement.TransType 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 nullCopyright © 2015. Charles W. Rapp. All Rights Reserved. Use is subject to license terms.