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