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