Module org.dyn4j

Enum LimitState

  • All Implemented Interfaces:
    Serializable, Comparable<LimitState>

    @Deprecated
    public enum LimitState
    extends Enum<LimitState>
    Deprecated.
    Deprecated in 4.0.0. Joints are now using predictive limits.
    Enumeration for the limit states a joint can have.
    Since:
    1.0.0
    Version:
    1.0.3
    Author:
    William Bittle
    • Enum Constant Detail

      • EQUAL

        public static final LimitState EQUAL
        Deprecated.
        The state if the upper and lower limits are equal within tolerance
      • AT_LOWER

        public static final LimitState AT_LOWER
        Deprecated.
        The state if the joint has reached or passed the lower limit
      • AT_UPPER

        public static final LimitState AT_UPPER
        Deprecated.
        The state if the joint has reached or passed the upper limit
      • INACTIVE

        public static final LimitState INACTIVE
        Deprecated.
        The state if the joint limits are disabled or if the joint is between the limits
    • Method Detail

      • values

        public static LimitState[] values()
        Deprecated.
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LimitState c : LimitState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LimitState valueOf​(String name)
        Deprecated.
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null