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