|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BlendState.TestFunction>
com.jme.scene.state.BlendState.TestFunction
public static enum BlendState.TestFunction
Enum Constant Summary | |
---|---|
Always
Always passes the depth test. |
|
EqualTo
Pass the test if this alpha is equal to the reference alpha. |
|
GreaterThan
Pass the test if this alpha is less than the reference alpha. |
|
GreaterThanOrEqualTo
Pass the test if this alpha is less than or equal to the reference alpha. |
|
LessThan
Pass the test if this alpha is less than the reference alpha. |
|
LessThanOrEqualTo
Pass the test if this alpha is less than or equal to the reference alpha. |
|
Never
Never passes the depth test. |
|
NotEqualTo
Pass the test if this alpha is not equal to the reference alpha. |
Method Summary | |
---|---|
static BlendState.TestFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BlendState.TestFunction[] |
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.TestFunction Never
public static final BlendState.TestFunction Always
public static final BlendState.TestFunction EqualTo
public static final BlendState.TestFunction NotEqualTo
public static final BlendState.TestFunction LessThan
public static final BlendState.TestFunction LessThanOrEqualTo
public static final BlendState.TestFunction GreaterThan
public static final BlendState.TestFunction GreaterThanOrEqualTo
Method Detail |
---|
public static BlendState.TestFunction[] values()
for (BlendState.TestFunction c : BlendState.TestFunction.values()) System.out.println(c);
public static BlendState.TestFunction 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 |