com.jme.scene.state
Enum WireframeState.Face

java.lang.Object
  extended by java.lang.Enum<WireframeState.Face>
      extended by com.jme.scene.state.WireframeState.Face
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WireframeState.Face>
Enclosing class:
WireframeState

public static enum WireframeState.Face
extends java.lang.Enum<WireframeState.Face>


Enum Constant Summary
Back
          The back will be wireframed, but the front will be solid.
Front
          The front will be wireframed, but the back will be solid.
FrontAndBack
          Both sides of the model are wireframed.
 
Method Summary
static WireframeState.Face valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WireframeState.Face[] 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

Front

public static final WireframeState.Face Front
The front will be wireframed, but the back will be solid.


Back

public static final WireframeState.Face Back
The back will be wireframed, but the front will be solid.


FrontAndBack

public static final WireframeState.Face FrontAndBack
Both sides of the model are wireframed.

Method Detail

values

public static WireframeState.Face[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (WireframeState.Face c : WireframeState.Face.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WireframeState.Face valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null