com.jme.renderer
Enum Camera.FrustumIntersect

java.lang.Object
  extended by java.lang.Enum<Camera.FrustumIntersect>
      extended by com.jme.renderer.Camera.FrustumIntersect
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Camera.FrustumIntersect>
Enclosing interface:
Camera

public static enum Camera.FrustumIntersect
extends java.lang.Enum<Camera.FrustumIntersect>


Enum Constant Summary
Inside
          defines a constant assigned to spatials that are completely inside the camera's view frustum.
Intersects
          defines a constant assigned to spatials that are intersecting one of the six planes that define the view frustum.
Outside
          defines a constant assigned to spatials that are completely outside of this camera's view frustum.
 
Method Summary
static Camera.FrustumIntersect valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Camera.FrustumIntersect[] 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

Outside

public static final Camera.FrustumIntersect Outside
defines a constant assigned to spatials that are completely outside of this camera's view frustum.


Inside

public static final Camera.FrustumIntersect Inside
defines a constant assigned to spatials that are completely inside the camera's view frustum.


Intersects

public static final Camera.FrustumIntersect Intersects
defines a constant assigned to spatials that are intersecting one of the six planes that define the view frustum.

Method Detail

values

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

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

valueOf

public static Camera.FrustumIntersect 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