Package FeatureCompletionModel
Enum Constraint
- java.lang.Object
-
- java.lang.Enum<Constraint>
-
- FeatureCompletionModel.Constraint
-
- All Implemented Interfaces:
Serializable
,Comparable<Constraint>
,Enumerator
public enum Constraint extends Enum<Constraint> implements Enumerator
A representation of the literals of the enumeration 'Constraint', and utility methods for working with them.- See Also:
FeatureCompletionPackage.getConstraint()
- Generated class or method.
- EMF model class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static int
ANY_VALUE
The 'ANY' literal value.static int
ISOLATED_VALUE
The 'ISOLATED' literal value.static int
SEPARATED_VALUE
The 'SEPARATED' literal value.static int
TOGETHER_VALUE
The 'TOGETHER' literal value.static List<Constraint>
VALUES
A public read-only list of all the 'Constraint' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Constraint
get(int value)
Returns the 'Constraint' literal with the specified integer value.static Constraint
get(String literal)
Returns the 'Constraint' literal with the specified literal value.static Constraint
getByName(String name)
Returns the 'Constraint' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static Constraint
valueOf(String name)
Returns the enum constant of this type with the specified name.static Constraint[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- 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 interfaceEnumerator
- Generated class or method.
-
getName
public String getName()
- Specified by:
getName
in interfaceEnumerator
- Generated class or method.
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceEnumerator
- Generated class or method.
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<Constraint>
- Generated class or method.
-
-