public enum AlignmentEnum extends java.lang.Enum<AlignmentEnum> implements org.eclipse.emf.common.util.Enumerator
RichtextPackage.getAlignmentEnum()
Enum Constant and Description |
---|
CENTER
The 'Center' literal object.
|
LEFT
The 'Left' literal object.
|
RIGHT
The 'Right' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
CENTER_VALUE
The 'Center' literal value.
|
static int |
LEFT_VALUE
The 'Left' literal value.
|
static int |
RIGHT_VALUE
The 'Right' literal value.
|
static java.util.List<AlignmentEnum> |
VALUES
A public read-only list of all the 'Alignment Enum' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static AlignmentEnum |
get(int value)
Returns the 'Alignment Enum' literal with the specified integer value.
|
static AlignmentEnum |
get(java.lang.String literal)
Returns the 'Alignment Enum' literal with the specified literal value.
|
static AlignmentEnum |
getByName(java.lang.String name)
Returns the 'Alignment Enum' 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 AlignmentEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlignmentEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlignmentEnum CENTER
CENTER_VALUE
public static final AlignmentEnum LEFT
LEFT_VALUE
public static final AlignmentEnum RIGHT
RIGHT_VALUE
public static final int CENTER_VALUE
If the meaning of 'Center' literal object isn't clear, there really should be more of a description here...
CENTER
,
Constant Field Valuespublic static final int LEFT_VALUE
If the meaning of 'Left' literal object isn't clear, there really should be more of a description here...
LEFT
,
Constant Field Valuespublic static final int RIGHT_VALUE
If the meaning of 'Right' literal object isn't clear, there really should be more of a description here...
RIGHT
,
Constant Field Valuespublic static final java.util.List<AlignmentEnum> VALUES
public static AlignmentEnum[] values()
for (AlignmentEnum c : AlignmentEnum.values()) System.out.println(c);
public static AlignmentEnum 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 AlignmentEnum get(java.lang.String literal)
public static AlignmentEnum getByName(java.lang.String name)
public static AlignmentEnum get(int value)
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<AlignmentEnum>