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