public static enum Camera.FrustumIntersect extends java.lang.Enum<Camera.FrustumIntersect>
FrustumIntersect enum is returned as a result
 of a culling check operation, 
 see Camera.contains(com.jme3.bounding.BoundingVolume)| Enum Constant and Description | 
|---|
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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final Camera.FrustumIntersect Outside
public static final Camera.FrustumIntersect Inside
public static final Camera.FrustumIntersect Intersects
public static Camera.FrustumIntersect[] values()
for (Camera.FrustumIntersect c : Camera.FrustumIntersect.values()) System.out.println(c);
public static Camera.FrustumIntersect 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 namejava.lang.NullPointerException - if the argument is null