Module org.dyn4j

Enum MassType

    • Enum Constant Detail

      • NORMAL

        public static final MassType NORMAL
        Indicates a normal mass
      • INFINITE

        public static final MassType INFINITE
        Indicates that the mass is infinite (rate of rotation and translation should not change)
      • FIXED_ANGULAR_VELOCITY

        public static final MassType FIXED_ANGULAR_VELOCITY
        Indicates that the mass's rate of rotation should not change
      • FIXED_LINEAR_VELOCITY

        public static final MassType FIXED_LINEAR_VELOCITY
        Indicates that the mass's rate of translation should not change
    • Method Detail

      • values

        public static MassType[] values()
        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 (MassType c : MassType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MassType valueOf​(String name)
        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