Enum Class DumpFlags

java.lang.Object
java.lang.Enum<DumpFlags>
jme3utilities.minie.DumpFlags
All Implemented Interfaces:
Serializable, Comparable<DumpFlags>, Constable

public enum DumpFlags extends Enum<DumpFlags>
Enumerate the flags used to configure a PhysicsDumper.
  • Enum Constant Details

    • ChildShapes

      public static final DumpFlags ChildShapes
      children in compound collision shapes
    • ClustersInSofts

      public static final DumpFlags ClustersInSofts
      clusters in soft bodies
    • Ignores

      public static final DumpFlags Ignores
      ignored objects in collision objects
    • JointsInBodies

      public static final DumpFlags JointsInBodies
      physics joints in rigid bodies
    • JointsInSpaces

      public static final DumpFlags JointsInSpaces
      joints in physics spaces
    • Motors

      public static final DumpFlags Motors
      motors in physics joints
    • NodesInClusters

      public static final DumpFlags NodesInClusters
      soft-body nodes in clusters
    • NativeIDs

      public static final DumpFlags NativeIDs
      native IDs of physics objects
    • NodesInSofts

      public static final DumpFlags NodesInSofts
      nodes in soft bodies
    • Pcos

      public static final DumpFlags Pcos
      collision objects in physics spaces
  • Method Details

    • values

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