public enum IntervalsKind extends java.lang.Enum<IntervalsKind> implements org.eclipse.emf.common.util.Enumerator
SsmePackage.getIntervalsKind()
Enum Constant and Description |
---|
LEFT_CLOSED_RIGHT_CLOSED_LITERAL
The 'Left Closed Right Closed' literal object
|
LEFT_CLOSED_RIGHT_OPENED_LITERAL
The 'Left Closed Right Opened' literal object
|
LEFT_OPENED_RIGHT_CLOSED_LITERAL
The 'Left Opened Right Closed' literal object
|
LEFT_OPENED_RIGHT_OPENED_LITERAL
The 'Left Opened Right Opened' literal object
|
Modifier and Type | Field and Description |
---|---|
static int |
LEFT_CLOSED_RIGHT_CLOSED
The 'Left Closed Right Closed' literal value
|
static int |
LEFT_CLOSED_RIGHT_OPENED
The 'Left Closed Right Opened' literal value
|
static int |
LEFT_OPENED_RIGHT_CLOSED
The 'Left Opened Right Closed' literal value
|
static int |
LEFT_OPENED_RIGHT_OPENED
The 'Left Opened Right Opened' literal value
|
static java.util.List<IntervalsKind> |
VALUES
A public read-only list of all the 'Intervals Kind' enumerators
|
Modifier and Type | Method and Description |
---|---|
static IntervalsKind |
get(int value)
Returns the 'Intervals Kind' literal with the specified integer value
|
static IntervalsKind |
get(java.lang.String literal)
Returns the 'Intervals Kind' literal with the specified literal value
|
static IntervalsKind |
getByName(java.lang.String name)
Returns the 'Intervals Kind' literal with the specified name
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation
|
static IntervalsKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntervalsKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalsKind LEFT_CLOSED_RIGHT_CLOSED_LITERAL
LEFT_CLOSED_RIGHT_CLOSED
public static final IntervalsKind LEFT_CLOSED_RIGHT_OPENED_LITERAL
LEFT_CLOSED_RIGHT_OPENED
public static final IntervalsKind LEFT_OPENED_RIGHT_CLOSED_LITERAL
LEFT_OPENED_RIGHT_CLOSED
public static final IntervalsKind LEFT_OPENED_RIGHT_OPENED_LITERAL
LEFT_OPENED_RIGHT_OPENED
public static final int LEFT_CLOSED_RIGHT_CLOSED
If the meaning of 'Left Closed Right Closed' literal object isn't clear, there really should be more of a description here...
public static final int LEFT_CLOSED_RIGHT_OPENED
If the meaning of 'Left Closed Right Opened' literal object isn't clear, there really should be more of a description here...
public static final int LEFT_OPENED_RIGHT_CLOSED
If the meaning of 'Left Opened Right Closed' literal object isn't clear, there really should be more of a description here...
public static final int LEFT_OPENED_RIGHT_OPENED
If the meaning of 'Left Opened Right Opened' literal object isn't clear, there really should be more of a description here...
public static final java.util.List<IntervalsKind> VALUES
public static IntervalsKind[] values()
for (IntervalsKind c : IntervalsKind.values()) System.out.println(c);
public static IntervalsKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static IntervalsKind get(java.lang.String literal)
literal
- the literal.null
.public static IntervalsKind getByName(java.lang.String name)
name
- the name.null
.public static IntervalsKind get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<IntervalsKind>