public enum UnderlineStyle extends java.lang.Enum<UnderlineStyle> implements org.eclipse.emf.common.util.Enumerator
StylesPackage.getUnderlineStyle()
Enum Constant and Description |
---|
UNDERLINE_DOUBLE
The 'UNDERLINE DOUBLE' literal object.
|
UNDERLINE_ERROR
The 'UNDERLINE ERROR' literal object.
|
UNDERLINE_SINGLE
The 'UNDERLINE SINGLE' literal object.
|
UNDERLINE_SQUIGGLE
The 'UNDERLINE SQUIGGLE' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
UNDERLINE_DOUBLE_VALUE
The 'UNDERLINE DOUBLE' literal value.
|
static int |
UNDERLINE_ERROR_VALUE
The 'UNDERLINE ERROR' literal value.
|
static int |
UNDERLINE_SINGLE_VALUE
The 'UNDERLINE SINGLE' literal value.
|
static int |
UNDERLINE_SQUIGGLE_VALUE
The 'UNDERLINE SQUIGGLE' literal value.
|
static java.util.List<UnderlineStyle> |
VALUES
A public read-only list of all the 'Underline Style' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static UnderlineStyle |
get(int value)
Returns the 'Underline Style' literal with the specified integer value.
|
static UnderlineStyle |
get(java.lang.String literal)
Returns the 'Underline Style' literal with the specified literal value.
|
static UnderlineStyle |
getByName(java.lang.String name)
Returns the 'Underline Style' 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 UnderlineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnderlineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnderlineStyle UNDERLINE_SINGLE
UNDERLINE_SINGLE_VALUE
public static final UnderlineStyle UNDERLINE_DOUBLE
UNDERLINE_DOUBLE_VALUE
public static final UnderlineStyle UNDERLINE_ERROR
UNDERLINE_ERROR_VALUE
public static final UnderlineStyle UNDERLINE_SQUIGGLE
UNDERLINE_SQUIGGLE_VALUE
public static final int UNDERLINE_SINGLE_VALUE
If the meaning of 'UNDERLINE SINGLE' literal object isn't clear, there really should be more of a description here...
UNDERLINE_SINGLE
,
Constant Field Valuespublic static final int UNDERLINE_DOUBLE_VALUE
If the meaning of 'UNDERLINE DOUBLE' literal object isn't clear, there really should be more of a description here...
UNDERLINE_DOUBLE
,
Constant Field Valuespublic static final int UNDERLINE_ERROR_VALUE
If the meaning of 'UNDERLINE ERROR' literal object isn't clear, there really should be more of a description here...
UNDERLINE_ERROR
,
Constant Field Valuespublic static final int UNDERLINE_SQUIGGLE_VALUE
If the meaning of 'UNDERLINE SQUIGGLE' literal object isn't clear, there really should be more of a description here...
UNDERLINE_SQUIGGLE
,
Constant Field Valuespublic static final java.util.List<UnderlineStyle> VALUES
public static UnderlineStyle[] values()
for (UnderlineStyle c : UnderlineStyle.values()) System.out.println(c);
public static UnderlineStyle 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 UnderlineStyle get(java.lang.String literal)
public static UnderlineStyle getByName(java.lang.String name)
public static UnderlineStyle 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<UnderlineStyle>