Enum ConsType

    • Enum Constant Detail

      • EQ

        public static final ConsType EQ
        To define a constraint of the type =
      • LE

        public static final ConsType LE
        To define a constraint of the type < =
      • GE

        public static final ConsType GE
        To define a constraint of the type > =
      • INT

        public static final ConsType INT
        To define integer variables
      • BIN

        public static final ConsType BIN
        To define binary variables
      • UPPER

        public static final ConsType UPPER
        For defining Upper bounds
      • LOWER

        public static final ConsType LOWER
        For defining Lower bounds
      • SEMICONT

        public static final ConsType SEMICONT
        To define semicontinuous variables
    • Method Detail

      • values

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

        public static ConsType 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
      • getValue

        public String getValue()
        Retrieves the value associated with the enumeration.
        Returns:
        The value associated with the enumeration.
      • toString

        public String toString()
        Returns a string representation of the enumeration value.
        Overrides:
        toString in class Enum<ConsType>
        Returns:
        A string representation of the enumeration value.