Enum Class MaterialState.MaterialFace

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

public static enum MaterialState.MaterialFace extends Enum<MaterialState.MaterialFace>
  • Enum Constant Details

    • Front

      public static final MaterialState.MaterialFace Front
      Apply material property to front face only.
    • Back

      public static final MaterialState.MaterialFace Back
      Apply material property to back face only. Note that this only has an affect if two sided lighting is enabled.
    • FrontAndBack

      public static final MaterialState.MaterialFace FrontAndBack
      Apply material property to front and back faces.
  • Method Details

    • values

      public static MaterialState.MaterialFace[] 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 MaterialState.MaterialFace 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