public static enum Constants.BlendMode extends Enum<Constants.BlendMode>
Enum Constant and Description |
---|
Add |
Blend |
Multiply |
Replace |
Subtract |
Modifier and Type | Method and Description |
---|---|
int |
unwrap() |
static Constants.BlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.BlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.BlendMode Replace
public static final Constants.BlendMode Blend
public static final Constants.BlendMode Add
public static final Constants.BlendMode Subtract
public static final Constants.BlendMode Multiply
public static Constants.BlendMode[] values()
for (Constants.BlendMode c : Constants.BlendMode.values()) System.out.println(c);
public static Constants.BlendMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int unwrap()