Enum Class WireframeState.Face

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

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

    • Front

      public static final WireframeState.Face Front
      The front will be wireframed, but the back will be solid.
    • Back

      public static final WireframeState.Face Back
      The back will be wireframed, but the front will be solid.
    • FrontAndBack

      public static final WireframeState.Face FrontAndBack
      Both sides of the model are wireframed.
  • Method Details

    • values

      public static WireframeState.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 WireframeState.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