com.jme3.scene
Enum Spatial.BatchHint

java.lang.Object
  extended by java.lang.Enum<Spatial.BatchHint>
      extended by com.jme3.scene.Spatial.BatchHint
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Spatial.BatchHint>
Enclosing class:
Spatial

public static enum Spatial.BatchHint
extends java.lang.Enum<Spatial.BatchHint>

Specifies if this spatial should be batched


Enum Constant Summary
Always
          This spatial will always be batched when attached to a BatchNode.
Inherit
          Do whatever our parent does.
Never
          This spatial will never be batched when attached to a BatchNode.
 
Method Summary
static Spatial.BatchHint valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Spatial.BatchHint[] 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

Inherit

public static final Spatial.BatchHint Inherit
Do whatever our parent does. If no parent, default to Always.


Always

public static final Spatial.BatchHint Always
This spatial will always be batched when attached to a BatchNode.


Never

public static final Spatial.BatchHint Never
This spatial will never be batched when attached to a BatchNode.

Method Detail

values

public static Spatial.BatchHint[] 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 (Spatial.BatchHint c : Spatial.BatchHint.values())
    System.out.println(c);

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

valueOf

public static Spatial.BatchHint 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