|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StencilState.StencilFunction>
com.jme.scene.state.StencilState.StencilFunction
public static enum StencilState.StencilFunction
Enum Constant Summary | |
---|---|
Always
A stencil function that always passes. |
|
EqualTo
A stencil function that passes if (ref & max) == (stencil & mask). |
|
GreaterThan
A stencil function that passes if (ref & max) > (stencil & mask). |
|
GreaterThanOrEqualTo
A stencil function that passes if (ref & max) >= (stencil & mask). |
|
LessThan
A stencil function that passes if (ref & mask) < (stencil & mask). |
|
LessThanOrEqualTo
A stencil function that passes if (ref & max) <= (stencil & mask). |
|
Never
A stencil function that never passes. |
|
NotEqualTo
A stencil function that passes if (ref & max) != (stencil & mask). |
Method Summary | |
---|---|
static StencilState.StencilFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StencilState.StencilFunction[] |
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 StencilState.StencilFunction Never
public static final StencilState.StencilFunction LessThan
public static final StencilState.StencilFunction LessThanOrEqualTo
public static final StencilState.StencilFunction GreaterThan
public static final StencilState.StencilFunction GreaterThanOrEqualTo
public static final StencilState.StencilFunction EqualTo
public static final StencilState.StencilFunction NotEqualTo
public static final StencilState.StencilFunction Always
Method Detail |
---|
public static StencilState.StencilFunction[] values()
for (StencilState.StencilFunction c : StencilState.StencilFunction.values()) System.out.println(c);
public static StencilState.StencilFunction 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 |