Enum Class Camera.FrustumIntersect

java.lang.Object
java.lang.Enum<Camera.FrustumIntersect>
com.ardor3d.renderer.Camera.FrustumIntersect
All Implemented Interfaces:
Serializable, Comparable<Camera.FrustumIntersect>, Constable
Enclosing class:
Camera

public static enum Camera.FrustumIntersect extends Enum<Camera.FrustumIntersect>
  • Enum Constant Details

    • Outside

      public static final Camera.FrustumIntersect Outside
      Object being compared to the frustum is completely outside of the frustum.
    • Inside

      public static final Camera.FrustumIntersect Inside
      Object being compared to the frustum is completely inside of the frustum.
    • Intersects

      public static final Camera.FrustumIntersect Intersects
      Object being compared to the frustum intersects one of the frustum planes and is thus both inside and outside of the frustum.
  • Method Details

    • values

      public static Camera.FrustumIntersect[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Camera.FrustumIntersect valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null