de.mid.innovator.srv2api.icw2sm
Enum SMRegularState.VAttr
java.lang.Object
java.lang.Enum<SMRegularState.VAttr>
de.mid.innovator.srv2api.icw2sm.SMRegularState.VAttr
- All Implemented Interfaces:
- K_VATTR, Serializable, Comparable<SMRegularState.VAttr>
- Enclosing interface:
- SMRegularState
public static enum SMRegularState.VAttr
- extends Enum<SMRegularState.VAttr>
- implements K_VATTR
|
Method Summary |
int |
toInt()
Returns a specific integer value for the enumeration constant. |
static SMRegularState.VAttr |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SMRegularState.VAttr[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
AcceptedTrigger
public static final SMRegularState.VAttr AcceptedTrigger
DeferreableTrigger
public static final SMRegularState.VAttr DeferreableTrigger
DeferredTrigger
public static final SMRegularState.VAttr DeferredTrigger
DoActivity
public static final SMRegularState.VAttr DoActivity
Entry
public static final SMRegularState.VAttr Entry
EntryPoint
public static final SMRegularState.VAttr EntryPoint
Exit
public static final SMRegularState.VAttr Exit
ExitPoint
public static final SMRegularState.VAttr ExitPoint
Region
public static final SMRegularState.VAttr Region
Submachine
public static final SMRegularState.VAttr Submachine
Transition
public static final SMRegularState.VAttr Transition
toInt
public int toInt()
- Returns a specific integer value for the enumeration constant.
This method is needed to serialize enumeration constants.
- Specified by:
toInt in interface K_VATTR
- Returns:
- the specified value of the enumeration constant
valueOf
public static SMRegularState.VAttr valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
values
public static SMRegularState.VAttr[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (SMRegularState.VAttr c : SMRegularState.VAttr.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared