|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StencilState.StencilOperation>
com.jme.scene.state.StencilState.StencilOperation
public static enum StencilState.StencilOperation
Enum Constant Summary | |
---|---|
Decrement
A stencil function result that decrements the current stencil buffer value. |
|
DecrementWrap
A stencil function result that decrements the current stencil buffer and wraps around to the highest stencil value if it reaches the min. |
|
Increment
A stencil function result that increments the current stencil buffer value. |
|
IncrementWrap
A stencil function result that increments the current stencil buffer value and wraps around to the lowest stencil value if it reaches the max. |
|
Invert
A stencil function result that bitwise inverts the current stencil buffer value. |
|
Keep
A stencil function result that keeps the current value. |
|
Replace
A stencil function result that sets the stencil buffer value to ref, as specified by stencil function. |
|
Zero
A stencil function result that sets the stencil buffer value to 0. |
Method Summary | |
---|---|
static StencilState.StencilOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StencilState.StencilOperation[] |
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.StencilOperation Keep
public static final StencilState.StencilOperation Zero
public static final StencilState.StencilOperation Replace
public static final StencilState.StencilOperation Increment
public static final StencilState.StencilOperation Decrement
public static final StencilState.StencilOperation IncrementWrap
public static final StencilState.StencilOperation DecrementWrap
public static final StencilState.StencilOperation Invert
Method Detail |
---|
public static StencilState.StencilOperation[] values()
for (StencilState.StencilOperation c : StencilState.StencilOperation.values()) System.out.println(c);
public static StencilState.StencilOperation 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 |