public enum Domain extends java.lang.Enum<Domain> implements org.eclipse.emf.common.util.Enumerator
CorePackage.getDomain()
Enum Constant and Description |
---|
AUTOMOTIVE
The 'Automotive' literal object.
|
AVIONICS
The 'Avionics' literal object.
|
CROSS_DOMAIN
The 'Cross domain' literal object.
|
MEDICAL
The 'Medical' literal object.
|
PETROLEUM
The 'Petroleum' literal object.
|
SPACE
The 'Space' literal object.
|
TELECOM
The 'Telecom' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
AUTOMOTIVE_VALUE
The 'Automotive' literal value.
|
static int |
AVIONICS_VALUE
The 'Avionics' literal value.
|
static int |
CROSS_DOMAIN_VALUE
The 'Cross domain' literal value.
|
static int |
MEDICAL_VALUE
The 'Medical' literal value.
|
static int |
PETROLEUM_VALUE
The 'Petroleum' literal value.
|
static int |
SPACE_VALUE
The 'Space' literal value.
|
static int |
TELECOM_VALUE
The 'Telecom' literal value.
|
static java.util.List<Domain> |
VALUES
A public read-only list of all the 'Domain' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static Domain |
get(int value)
Returns the 'Domain' literal with the specified integer value.
|
static Domain |
get(java.lang.String literal)
Returns the 'Domain' literal with the specified literal value.
|
static Domain |
getByName(java.lang.String name)
Returns the 'Domain' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static Domain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Domain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Domain CROSS_DOMAIN
CROSS_DOMAIN_VALUE
public static final Domain AVIONICS
AVIONICS_VALUE
public static final Domain AUTOMOTIVE
AUTOMOTIVE_VALUE
public static final Domain TELECOM
TELECOM_VALUE
public static final Domain SPACE
SPACE_VALUE
public static final Domain MEDICAL
MEDICAL_VALUE
public static final Domain PETROLEUM
PETROLEUM_VALUE
public static final int CROSS_DOMAIN_VALUE
If the meaning of 'Cross domain' literal object isn't clear, there really should be more of a description here...
CROSS_DOMAIN
,
Constant Field Valuespublic static final int AVIONICS_VALUE
If the meaning of 'Avionics' literal object isn't clear, there really should be more of a description here...
AVIONICS
,
Constant Field Valuespublic static final int AUTOMOTIVE_VALUE
If the meaning of 'Automotive' literal object isn't clear, there really should be more of a description here...
AUTOMOTIVE
,
Constant Field Valuespublic static final int TELECOM_VALUE
If the meaning of 'Telecom' literal object isn't clear, there really should be more of a description here...
TELECOM
,
Constant Field Valuespublic static final int SPACE_VALUE
If the meaning of 'Space' literal object isn't clear, there really should be more of a description here...
SPACE
,
Constant Field Valuespublic static final int MEDICAL_VALUE
If the meaning of 'Medical' literal object isn't clear, there really should be more of a description here...
MEDICAL
,
Constant Field Valuespublic static final int PETROLEUM_VALUE
If the meaning of 'Petroleum' literal object isn't clear, there really should be more of a description here...
PETROLEUM
,
Constant Field Valuespublic static final java.util.List<Domain> VALUES
public static Domain[] values()
for (Domain c : Domain.values()) System.out.println(c);
public static Domain valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Domain get(java.lang.String literal)
literal
- the literal.null
.public static Domain getByName(java.lang.String name)
name
- the name.null
.public static Domain get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<Domain>