public enum SCStateType extends java.lang.Enum<SCStateType>
Enum Constant and Description |
---|
AndComposite |
ChoicePseudo |
Collapsed |
ErrorTrigger |
JoinPseudo |
LogSimple |
LoopCancel |
OrComposite |
OrEndPseudo |
OrStartPseudo |
PointPseudo |
Recurrent |
SeqCancel |
Simple |
SplitPseudo |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName() |
java.lang.String |
getSymbol() |
boolean |
isCompositeType() |
boolean |
isPseudostate() |
java.lang.String |
toString() |
static SCStateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SCStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCStateType Simple
public static final SCStateType SplitPseudo
public static final SCStateType JoinPseudo
public static final SCStateType ChoicePseudo
public static final SCStateType PointPseudo
public static final SCStateType OrStartPseudo
public static final SCStateType OrEndPseudo
public static final SCStateType AndComposite
public static final SCStateType OrComposite
public static final SCStateType Collapsed
public static final SCStateType Recurrent
public static final SCStateType SeqCancel
public static final SCStateType LoopCancel
public static final SCStateType ErrorTrigger
public static final SCStateType LogSimple
public static SCStateType[] values()
for (SCStateType c : SCStateType.values()) System.out.println(c);
public static SCStateType 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 nullpublic java.lang.String getSymbol()
public java.lang.String getName()
public boolean isPseudostate()
public boolean isCompositeType()
public java.lang.String toString()
toString
in class java.lang.Enum<SCStateType>