Enum Class UnderlineStyle
- All Implemented Interfaces:
Serializable
,Comparable<UnderlineStyle>
,Constable
,org.eclipse.emf.common.util.Enumerator
public enum UnderlineStyle
extends Enum<UnderlineStyle>
implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Underline Style',
and utility methods for working with them.
- Since:
- 0.10
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe 'UNDERLINE DOUBLE' literal object.The 'UNDERLINE ERROR' literal object.The 'UNDERLINE SINGLE' literal object.The 'UNDERLINE SQUIGGLE' literal object. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The 'UNDERLINE DOUBLE' literal value.static final int
The 'UNDERLINE ERROR' literal value.static final int
The 'UNDERLINE SINGLE' literal value.static final int
The 'UNDERLINE SQUIGGLE' literal value.static final List<UnderlineStyle>
A public read-only list of all the 'Underline Style' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic UnderlineStyle
get
(int value) Returns the 'Underline Style' literal with the specified integer value.static UnderlineStyle
Returns the 'Underline Style' literal with the specified literal value.static UnderlineStyle
Returns the 'Underline Style' literal with the specified name.getName()
int
getValue()
toString()
Returns the literal value of the enumerator, which is its string representation.static UnderlineStyle
Returns the enum constant of this class with the specified name.static UnderlineStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNDERLINE_SINGLE
The 'UNDERLINE SINGLE' literal object.- See Also:
-
UNDERLINE_DOUBLE
The 'UNDERLINE DOUBLE' literal object.- See Also:
-
UNDERLINE_ERROR
The 'UNDERLINE ERROR' literal object.- See Also:
-
UNDERLINE_SQUIGGLE
The 'UNDERLINE SQUIGGLE' literal object.- See Also:
-
-
Field Details
-
UNDERLINE_SINGLE_VALUE
public static final int UNDERLINE_SINGLE_VALUEThe 'UNDERLINE SINGLE' literal value.If the meaning of 'UNDERLINE SINGLE' literal object isn't clear, there really should be more of a description here...
- See Also:
-
UNDERLINE_DOUBLE_VALUE
public static final int UNDERLINE_DOUBLE_VALUEThe 'UNDERLINE DOUBLE' literal value.If the meaning of 'UNDERLINE DOUBLE' literal object isn't clear, there really should be more of a description here...
- See Also:
-
UNDERLINE_ERROR_VALUE
public static final int UNDERLINE_ERROR_VALUEThe 'UNDERLINE ERROR' literal value.If the meaning of 'UNDERLINE ERROR' literal object isn't clear, there really should be more of a description here...
- See Also:
-
UNDERLINE_SQUIGGLE_VALUE
public static final int UNDERLINE_SQUIGGLE_VALUEThe 'UNDERLINE SQUIGGLE' literal value.If the meaning of 'UNDERLINE SQUIGGLE' literal object isn't clear, there really should be more of a description here...
- See Also:
-
VALUES
A public read-only list of all the 'Underline Style' enumerators.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
get
Returns the 'Underline Style' literal with the specified literal value. -
getByName
Returns the 'Underline Style' literal with the specified name. -
get
Returns the 'Underline Style' literal with the specified integer value. -
getValue
public int getValue()- Specified by:
getValue
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
- Specified by:
getName
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
- Specified by:
getLiteral
in interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<UnderlineStyle>
-