|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TestEnum>
org.eclipse.emf.ecp.view.core.swt.test.model.TestEnum
public enum TestEnum
A representation of the literals of the enumeration 'Enum', and utility methods for working with them.
TestPackage.getTestEnum()
Enum Constant Summary | |
---|---|
A
The 'A' literal object. |
|
B
The 'B' literal object. |
|
C
The 'C' literal object. |
Field Summary | |
---|---|
static int |
A_VALUE
The 'A' literal value. |
static int |
B_VALUE
The 'B' literal value. |
static int |
C_VALUE
The 'C' literal value. |
static List<TestEnum> |
VALUES
A public read-only list of all the 'Enum' enumerators. |
Method Summary | |
---|---|
static TestEnum |
get(int value)
Returns the 'Enum' literal with the specified integer value. |
static TestEnum |
get(String literal)
Returns the 'Enum' literal with the specified literal value. |
static TestEnum |
getByName(String name)
Returns the 'Enum' 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 TestEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TestEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TestEnum A
A_VALUE
public static final TestEnum B
B_VALUE
public static final TestEnum C
C_VALUE
Field Detail |
---|
public static final int A_VALUE
If the meaning of 'A' literal object isn't clear, there really should be more of a description here...
A
,
Constant Field Valuespublic static final int B_VALUE
If the meaning of 'B' literal object isn't clear, there really should be more of a description here...
B
,
Constant Field Valuespublic static final int C_VALUE
If the meaning of 'C' literal object isn't clear, there really should be more of a description here...
C
,
Constant Field Valuespublic static final List<TestEnum> VALUES
Method Detail |
---|
public static TestEnum[] values()
for (TestEnum c : TestEnum.values()) System.out.println(c);
public static TestEnum valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static TestEnum get(String literal)
public static TestEnum getByName(String name)
public static TestEnum 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<TestEnum>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |