Enum Class CullState.Face

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

public static enum CullState.Face extends Enum<CullState.Face>
  • Enum Constant Details

    • None

      public static final CullState.Face None
      Neither front or back face is culled. This is default.
    • Front

      public static final CullState.Face Front
      Cull the front faces.
    • Back

      public static final CullState.Face Back
      Cull the back faces.
    • FrontAndBack

      public static final CullState.Face FrontAndBack
      Cull both the front and back faces.
  • Method Details

    • values

      public static CullState.Face[] 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 CullState.Face 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