Enum Constraint

    • Enum Constant Detail

      • ANY

        public static final Constraint ANY
        The 'ANY' literal object.
        See Also:
        ANY_VALUE
        Generated class or method.
        Ordered collection.
      • TOGETHER

        public static final Constraint TOGETHER
        The 'TOGETHER' literal object.
        See Also:
        TOGETHER_VALUE
        Generated class or method.
        Ordered collection.
      • ISOLATED

        public static final Constraint ISOLATED
        The 'ISOLATED' literal object.
        See Also:
        ISOLATED_VALUE
        Generated class or method.
        Ordered collection.
      • SEPARATED

        public static final Constraint SEPARATED
        The 'SEPARATED' literal object.
        See Also:
        SEPARATED_VALUE
        Generated class or method.
        Ordered collection.
    • Field Detail

      • ANY_VALUE

        public static final int ANY_VALUE
        The 'ANY' literal value.

        If the meaning of 'ANY' literal object isn't clear, there really should be more of a description here...

        See Also:
        ANY, Constant Field Values
        Generated class or method.
        EMF model class or method.
        Ordered collection.
      • TOGETHER_VALUE

        public static final int TOGETHER_VALUE
        The 'TOGETHER' literal value.

        If the meaning of 'TOGETHER' literal object isn't clear, there really should be more of a description here...

        See Also:
        TOGETHER, Constant Field Values
        Generated class or method.
        EMF model class or method.
        Ordered collection.
      • ISOLATED_VALUE

        public static final int ISOLATED_VALUE
        The 'ISOLATED' literal value.

        If the meaning of 'ISOLATED' literal object isn't clear, there really should be more of a description here...

        See Also:
        ISOLATED, Constant Field Values
        Generated class or method.
        EMF model class or method.
        Ordered collection.
      • SEPARATED_VALUE

        public static final int SEPARATED_VALUE
        The 'SEPARATED' literal value.

        If the meaning of 'SEPARATED' literal object isn't clear, there really should be more of a description here...

        See Also:
        SEPARATED, Constant Field Values
        Generated class or method.
        EMF model class or method.
        Ordered collection.
      • VALUES

        public static final List<Constraint> VALUES
        A public read-only list of all the 'Constraint' enumerators.
        Generated class or method.
    • Method Detail

      • values

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

        public static Constraint 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
      • get

        public static Constraint get​(String literal)
        Returns the 'Constraint' literal with the specified literal value.
        Parameters:
        literal - the literal.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • getByName

        public static Constraint getByName​(String name)
        Returns the 'Constraint' literal with the specified name.
        Parameters:
        name - the name.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • get

        public static Constraint get​(int value)
        Returns the 'Constraint' literal with the specified integer value.
        Parameters:
        value - the integer value.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • getValue

        public int getValue()
        Specified by:
        getValue in interface Enumerator
        Generated class or method.
      • toString

        public String toString()
        Returns the literal value of the enumerator, which is its string representation.
        Overrides:
        toString in class Enum<Constraint>
        Generated class or method.