com.acarter.scenemonitor.textdescriptor.definitions
Enum SpatialDescriptor.E_RenderQueueMode

java.lang.Object
  extended by java.lang.Enum<SpatialDescriptor.E_RenderQueueMode>
      extended by com.acarter.scenemonitor.textdescriptor.definitions.SpatialDescriptor.E_RenderQueueMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SpatialDescriptor.E_RenderQueueMode>
Enclosing class:
SpatialDescriptor

protected static enum SpatialDescriptor.E_RenderQueueMode
extends java.lang.Enum<SpatialDescriptor.E_RenderQueueMode>

Enumerates the permissible render queue mode.

Author:
Andrew Carter

Enum Constant Summary
QUEUE_INHERIT
          The Spatial will inherit its render queue state from its parent.
QUEUE_OPAQUE
          The Spatial will render in the opaque bucket.
QUEUE_ORTHO
          The Spatial will render in the ortho bucket.
QUEUE_SKIP
          The Spatial will skip render queueing.
QUEUE_TRANSPARENT
          The Spatial will render in the transparent bucket.
 
Method Summary
static SpatialDescriptor.E_RenderQueueMode getConstant(int type)
          Returns the enum constant matching the type value.
static SpatialDescriptor.E_RenderQueueMode getConstant(java.lang.String name)
          Returns the enum constant matching the name string.
 int getType()
          Returns the integer value of the constant.
 java.lang.String toString()
          Returns the string value of the constant.
static SpatialDescriptor.E_RenderQueueMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpatialDescriptor.E_RenderQueueMode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

QUEUE_INHERIT

public static final SpatialDescriptor.E_RenderQueueMode QUEUE_INHERIT
The Spatial will inherit its render queue state from its parent.


QUEUE_SKIP

public static final SpatialDescriptor.E_RenderQueueMode QUEUE_SKIP
The Spatial will skip render queueing.


QUEUE_OPAQUE

public static final SpatialDescriptor.E_RenderQueueMode QUEUE_OPAQUE
The Spatial will render in the opaque bucket.


QUEUE_TRANSPARENT

public static final SpatialDescriptor.E_RenderQueueMode QUEUE_TRANSPARENT
The Spatial will render in the transparent bucket.


QUEUE_ORTHO

public static final SpatialDescriptor.E_RenderQueueMode QUEUE_ORTHO
The Spatial will render in the ortho bucket.

Method Detail

values

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

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

valueOf

public static SpatialDescriptor.E_RenderQueueMode 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

getConstant

public static SpatialDescriptor.E_RenderQueueMode getConstant(java.lang.String name)
Returns the enum constant matching the name string.

Parameters:
name - string value of enum constant
Returns:
matching enum constant or null

getConstant

public static SpatialDescriptor.E_RenderQueueMode getConstant(int type)
Returns the enum constant matching the type value.

Parameters:
type - type value of enum constant
Returns:
matching enum constant or null

toString

public java.lang.String toString()
Returns the string value of the constant.

Overrides:
toString in class java.lang.Enum<SpatialDescriptor.E_RenderQueueMode>

getType

public int getType()
Returns the integer value of the constant.

Returns: