Enum Class DirtyType

java.lang.Object
java.lang.Enum<DirtyType>
com.ardor3d.scenegraph.event.DirtyType
All Implemented Interfaces:
Serializable, Comparable<DirtyType>, Constable

public enum DirtyType extends Enum<DirtyType>
DirtyType contains the types of update that can occur on a spatial.
  • Enum Constant Details

    • Transform

      public static final DirtyType Transform
    • Bounding

      public static final DirtyType Bounding
    • Attached

      public static final DirtyType Attached
    • Detached

      public static final DirtyType Detached
    • Destroyed

      public static final DirtyType Destroyed
    • RenderState

      public static final DirtyType RenderState
  • Method Details

    • values

      public static DirtyType[] 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 DirtyType 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