Package 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
,java.io.Serializable
,java.lang.Comparable<SMRegularState.VAttr>
- Enclosing interface:
- SMRegularState
public static enum SMRegularState.VAttr extends java.lang.Enum<SMRegularState.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AcceptedTrigger
DeferreableTrigger
DeferredTrigger
DoActivity
Entry
EntryPoint
Exit
ExitPoint
Region
Submachine
Transition
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
toInt()
Returns a specific integer value for the enumeration constant.static SMRegularState.VAttr
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
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
-
-
Method Detail
-
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
-
valueOf
public static SMRegularState.VAttr valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-