public static enum BoolAttributeData.Operation extends java.lang.Enum<BoolAttributeData.Operation>
| Enum Constant and Description |
|---|
ALPHA_BLEND |
AND |
NAND |
NOR |
OR |
OVERRIDE |
XNOR |
XOR |
| Modifier and Type | Method and Description |
|---|---|
static BoolAttributeData.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoolAttributeData.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoolAttributeData.Operation OVERRIDE
public static final BoolAttributeData.Operation ALPHA_BLEND
public static final BoolAttributeData.Operation AND
public static final BoolAttributeData.Operation NAND
public static final BoolAttributeData.Operation OR
public static final BoolAttributeData.Operation NOR
public static final BoolAttributeData.Operation XOR
public static final BoolAttributeData.Operation XNOR
public static BoolAttributeData.Operation[] values()
for (BoolAttributeData.Operation c : BoolAttributeData.Operation.values()) System.out.println(c);
public static BoolAttributeData.Operation 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