|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BlendState.BlendEquation>
com.jme.scene.state.BlendState.BlendEquation
public static enum BlendState.BlendEquation
Enum Constant Summary | |
---|---|
Add
Sets the blend equation so that the source and destination data are added. |
|
Max
sets the blend equation so that each component of the result color is the maximum of the corresponding components of the source and destination colors. |
|
Min
sets the blend equation so that each component of the result color is the minimum of the corresponding components of the source and destination colors. |
|
ReverseSubtract
Same as Subtract, but the order is reversed (Dst - Src). |
|
Subtract
Sets the blend equation so that the source and destination data are subtracted (Src - Dest). |
Method Summary | |
---|---|
static BlendState.BlendEquation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BlendState.BlendEquation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BlendState.BlendEquation Add
public static final BlendState.BlendEquation Subtract
public static final BlendState.BlendEquation ReverseSubtract
public static final BlendState.BlendEquation Min
public static final BlendState.BlendEquation Max
Method Detail |
---|
public static BlendState.BlendEquation[] values()
for (BlendState.BlendEquation c : BlendState.BlendEquation.values()) System.out.println(c);
public static BlendState.BlendEquation 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |