public static enum VideoConstants.BlendMode extends Enum<VideoConstants.BlendMode>
Enum Constant and Description |
---|
Add |
BitXor |
Blend |
Difference |
Mask |
Multiply |
Screen |
Subtract |
Modifier and Type | Method and Description |
---|---|
static VideoConstants.BlendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoConstants.BlendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoConstants.BlendMode Blend
public static final VideoConstants.BlendMode Add
public static final VideoConstants.BlendMode Subtract
public static final VideoConstants.BlendMode Difference
public static final VideoConstants.BlendMode Multiply
public static final VideoConstants.BlendMode Screen
public static final VideoConstants.BlendMode BitXor
public static final VideoConstants.BlendMode Mask
public static VideoConstants.BlendMode[] values()
for (VideoConstants.BlendMode c : VideoConstants.BlendMode.values()) System.out.println(c);
public static VideoConstants.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 null