public enum AlignmentType extends Enum<AlignmentType> implements org.eclipse.emf.common.util.Enumerator
VTAlignmentPackage.getAlignmentType()
Enum Constant and Description |
---|
LEFT
The 'LEFT' literal object.
|
RIGHT
The 'RIGHT' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
LEFT_VALUE
The 'LEFT' literal value.
|
static int |
RIGHT_VALUE
The 'RIGHT' literal value.
|
static List<AlignmentType> |
VALUES
A public read-only list of all the 'Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static AlignmentType |
get(int value)
Returns the 'Type' literal with the specified integer value.
|
static AlignmentType |
get(String literal)
Returns the 'Type' literal with the specified literal value.
|
static AlignmentType |
getByName(String name)
Returns the 'Type' 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 AlignmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlignmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlignmentType LEFT
LEFT_VALUE
public static final AlignmentType RIGHT
RIGHT_VALUE
public 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 List<AlignmentType> VALUES
public static AlignmentType[] values()
for (AlignmentType c : AlignmentType.values()) System.out.println(c);
public static AlignmentType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static AlignmentType get(String literal)
literal
- the literal.null
.public static AlignmentType getByName(String name)
name
- the name.null
.public static AlignmentType get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public String toString()
toString
in class Enum<AlignmentType>
Copyright © 2019. All rights reserved.