Enum ConsType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ConsType>

    public enum ConsType
    extends java.lang.Enum<ConsType>
    Enumeration used to define the type of relationship in a Constraint object.
    Version:
    1.0
    Author:
    Stefano Scarioli
    See Also:
    SSC Software www.sscLab.org
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BIN
      To define binary variables
      EQ
      To define a constraint of the type =
      GE
      To define a constraint of the type > =
      INT
      To define integer variables
      LE
      To define a constraint of the type < =
      LOWER
      For defining Lower bounds
      SEMICONT
      To define semicontinuous variables
      UPPER
      For defining Upper bounds
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ConsType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ConsType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null