public enum BlendFunction extends java.lang.Enum<BlendFunction>
Enum Constant and Description |
---|
Add
The result is the destination added to the source.
|
Max
The result is the maximum of the source and destination.
|
Min
The result is the minimum of the source and destination.
|
ReverseSubtract
The result is the source subtracted from the destination.
|
Subtract
The result is the destination subtracted from the source.
|
Modifier and Type | Method and Description |
---|---|
static BlendFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlendFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlendFunction Add
public static final BlendFunction Subtract
public static final BlendFunction ReverseSubtract
public static final BlendFunction Min
public static final BlendFunction Max
public static BlendFunction[] values()
for (BlendFunction c : BlendFunction.values()) System.out.println(c);
public static BlendFunction 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