de.rico.engine.enums
Enum BlendDestFactor
java.lang.Object
java.lang.Enum<BlendDestFactor>
de.rico.engine.enums.BlendDestFactor
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BlendDestFactor>
public enum BlendDestFactor
- extends java.lang.Enum<BlendDestFactor>
This enumeration provides the possible blend functions for the
destination factor of the OpenGL blending function
- Author:
- Frank Bruns
Method Summary |
static BlendDestFactor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BlendDestFactor[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ZERO
public static final BlendDestFactor ZERO
ONE
public static final BlendDestFactor ONE
SOURCE_COLOR
public static final BlendDestFactor SOURCE_COLOR
ONE_MINUS_SOURCE_COLOR
public static final BlendDestFactor ONE_MINUS_SOURCE_COLOR
SOURCE_ALPHA
public static final BlendDestFactor SOURCE_ALPHA
ONE_MINUS_SOURCE_ALPHA
public static final BlendDestFactor ONE_MINUS_SOURCE_ALPHA
DEST_ALPHA
public static final BlendDestFactor DEST_ALPHA
ONE_MINUS_DEST_ALPHA
public static final BlendDestFactor ONE_MINUS_DEST_ALPHA
values
public static final BlendDestFactor[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(BlendDestFactor c : BlendDestFactor.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static BlendDestFactor valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name