public enum Architecture extends Enum<Architecture> implements org.eclipse.emf.common.util.Enumerator
DeploymentPackage.getArchitecture()| Enum Constant and Description |
|---|
AMD64
The 'Amd64' literal object.
|
I386
The 'I386' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
AMD64_VALUE
The 'Amd64' literal value.
|
static int |
I386_VALUE
The 'I386' literal value.
|
static List<Architecture> |
VALUES
A public read-only list of all the 'Architecture' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static Architecture |
get(int value)
Returns the 'Architecture' literal with the specified integer value.
|
static Architecture |
get(String literal)
Returns the 'Architecture' literal with the specified literal value.
|
static Architecture |
getByName(String name)
Returns the 'Architecture' 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 Architecture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Architecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Architecture I386
I386_VALUEpublic static final Architecture AMD64
AMD64_VALUEpublic static final int I386_VALUE
If the meaning of 'I386' literal object isn't clear, there really should be more of a description here...
I386,
Constant Field Valuespublic static final int AMD64_VALUE
If the meaning of 'Amd64' literal object isn't clear, there really should be more of a description here...
AMD64,
Constant Field Valuespublic static final List<Architecture> VALUES
public static Architecture[] values()
for (Architecture c : Architecture.values()) System.out.println(c);
public static Architecture 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 Architecture get(String literal)
literal - the literal.null.public static Architecture getByName(String name)
name - the name.null.public static Architecture get(int value)
value - the integer value.null.public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic String toString()
toString in class Enum<Architecture>