public enum FragmentType extends java.lang.Enum<FragmentType>
Enum Constant and Description |
---|
Alt |
Loop |
LoopCancel |
Parallel |
Root |
SeqCancel |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
static FragmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FragmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FragmentType Root
public static final FragmentType Alt
public static final FragmentType Parallel
public static final FragmentType Loop
public static final FragmentType SeqCancel
public static final FragmentType LoopCancel
public static FragmentType[] values()
for (FragmentType c : FragmentType.values()) System.out.println(c);
public static FragmentType 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 getLabel()