public enum ElementNameKind extends java.lang.Enum<ElementNameKind> implements org.eclipse.emf.common.util.Enumerator
Aadl2Package.getElementNameKind()
Enum Constant and Description |
---|
INTERNAL_EVENT
The 'Internal Event' literal object.
|
PROCESSOR_PORT
The 'Processor Port' literal object.
|
PROCESSOR_SUBPROGRAM
The 'Processor Subprogram' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
INTERNAL_EVENT_VALUE
The 'Internal Event' literal value.
|
static int |
PROCESSOR_PORT_VALUE
The 'Processor Port' literal value.
|
static int |
PROCESSOR_SUBPROGRAM_VALUE
The 'Processor Subprogram' literal value.
|
static java.util.List<ElementNameKind> |
VALUES
A public read-only list of all the 'Element Name Kind' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static ElementNameKind |
get(int value)
Returns the 'Element Name Kind' literal with the specified integer value.
|
static ElementNameKind |
get(java.lang.String literal)
Returns the 'Element Name Kind' literal with the specified literal value.
|
static ElementNameKind |
getByName(java.lang.String name)
Returns the 'Element Name Kind' 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 ElementNameKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElementNameKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementNameKind INTERNAL_EVENT
INTERNAL_EVENT_VALUE
public static final ElementNameKind PROCESSOR_PORT
PROCESSOR_PORT_VALUE
public static final ElementNameKind PROCESSOR_SUBPROGRAM
PROCESSOR_SUBPROGRAM_VALUE
public static final int INTERNAL_EVENT_VALUE
If the meaning of 'Internal Event' literal object isn't clear, there really should be more of a description here...
INTERNAL_EVENT
,
Constant Field Valuespublic static final int PROCESSOR_PORT_VALUE
If the meaning of 'Processor Port' literal object isn't clear, there really should be more of a description here...
PROCESSOR_PORT
,
Constant Field Valuespublic static final int PROCESSOR_SUBPROGRAM_VALUE
If the meaning of 'Processor Subprogram' literal object isn't clear, there really should be more of a description here...
PROCESSOR_SUBPROGRAM
,
Constant Field Valuespublic static final java.util.List<ElementNameKind> VALUES
public static ElementNameKind[] values()
for (ElementNameKind c : ElementNameKind.values()) System.out.println(c);
public static ElementNameKind 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 ElementNameKind get(java.lang.String literal)
public static ElementNameKind getByName(java.lang.String name)
public static ElementNameKind get(int value)
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<ElementNameKind>