Enum Class Texture.Type

java.lang.Object
java.lang.Enum<Texture.Type>
com.jme3.texture.Texture.Type
All Implemented Interfaces:
Serializable, Comparable<Texture.Type>, Constable
Enclosing class:
Texture

public static enum Texture.Type extends Enum<Texture.Type>
  • Enum Constant Details

    • TwoDimensional

      public static final Texture.Type TwoDimensional
      Two dimensional texture (default). A rectangle.
    • TwoDimensionalArray

      public static final Texture.Type TwoDimensionalArray
      An array of two-dimensional textures.
    • ThreeDimensional

      public static final Texture.Type ThreeDimensional
      Three-dimensional texture. (A cube)
    • CubeMap

      public static final Texture.Type CubeMap
      A set of 6 TwoDimensional textures arranged as faces of a cube facing inwards.
  • Method Details

    • values

      public static Texture.Type[] 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 Texture.Type 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