Enum Class LineStyle
- All Implemented Interfaces:
Serializable
,Comparable<LineStyle>
,Constable
,org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'Line Style',
and utility methods for working with them.
- 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 'DASH' literal object.The 'DASHDOT' literal object.The 'DASHDOTDOT' literal object.The 'DOT' literal object.The 'SOLID' literal object.The 'UNSPECIFIED' literal object. -
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The 'DASH' literal value.static final int
The 'DASHDOT' literal value.static final int
The 'DASHDOTDOT' literal value.static final int
The 'DOT' literal value.static final int
The 'SOLID' literal value.static final int
The 'UNSPECIFIED' literal value.A public read-only list of all the 'Line Style' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic LineStyle
get
(int value) Returns the 'Line Style' literal with the specified integer value.static LineStyle
Returns the 'Line Style' literal with the specified literal value.static LineStyle
Returns the 'Line Style' literal with the specified name.getName()
int
getValue()
toString()
Returns the literal value of the enumerator, which is its string representation.static LineStyle
Returns the enum constant of this class with the specified name.static LineStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOLID
The 'SOLID' literal object.- See Also:
-
DASH
The 'DASH' literal object.- See Also:
-
DASHDOT
The 'DASHDOT' literal object.- See Also:
-
DASHDOTDOT
The 'DASHDOTDOT' literal object.- See Also:
-
DOT
The 'DOT' literal object.- See Also:
-
UNSPECIFIED
The 'UNSPECIFIED' literal object.- See Also:
-
-
Field Details
-
SOLID_VALUE
public static final int SOLID_VALUEThe 'SOLID' literal value.If the meaning of 'SOLID' literal object isn't clear, there really should be more of a description here...
- See Also:
-
DASH_VALUE
public static final int DASH_VALUEThe 'DASH' literal value.If the meaning of 'DASH' literal object isn't clear, there really should be more of a description here...
- See Also:
-
DASHDOT_VALUE
public static final int DASHDOT_VALUEThe 'DASHDOT' literal value.If the meaning of 'DASHDOT' literal object isn't clear, there really should be more of a description here...
- See Also:
-
DASHDOTDOT_VALUE
public static final int DASHDOTDOT_VALUEThe 'DASHDOTDOT' literal value.If the meaning of 'DASHDOTDOT' literal object isn't clear, there really should be more of a description here...
- See Also:
-
DOT_VALUE
public static final int DOT_VALUEThe 'DOT' literal value.If the meaning of 'DOT' literal object isn't clear, there really should be more of a description here...
- See Also:
-
UNSPECIFIED_VALUE
public static final int UNSPECIFIED_VALUEThe 'UNSPECIFIED' literal value.If the meaning of 'UNSPECIFIED' 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 'Line 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 'Line Style' literal with the specified literal value. -
getByName
Returns the 'Line Style' literal with the specified name. -
get
Returns the 'Line 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.
-