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