public enum AccessKind extends java.lang.Enum<AccessKind> implements org.eclipse.emf.common.util.Enumerator
org.osate.aadl2.Aadl2Package#getAccessKind()
Enum Constant and Description |
---|
BUS
The 'BUS' literal object.
|
DATA
The 'DATA' literal object.
|
SUBPROGRAM
The 'SUBPROGRAM' literal object.
|
SUBPROGRAM_GROUP
The 'SUBPROGRAM GROUP' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
BUS_VALUE
The 'BUS' literal value.
|
static int |
DATA_VALUE
The 'DATA' literal value.
|
static int |
SUBPROGRAM_GROUP_VALUE
The 'SUBPROGRAM GROUP' literal value.
|
static int |
SUBPROGRAM_VALUE
The 'SUBPROGRAM' literal value.
|
static java.util.List<AccessKind> |
VALUES
A public read-only list of all the 'Access Kind' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static AccessKind |
get(int value)
Returns the 'Access Kind' literal with the specified integer value.
|
static AccessKind |
get(java.lang.String literal)
Returns the 'Access Kind' literal with the specified literal value.
|
static AccessKind |
getByName(java.lang.String name)
Returns the 'Access 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 AccessKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessKind BUS
BUS_VALUE
public static final AccessKind DATA
DATA_VALUE
public static final AccessKind SUBPROGRAM
SUBPROGRAM_VALUE
public static final AccessKind SUBPROGRAM_GROUP
SUBPROGRAM_GROUP_VALUE
public static final int BUS_VALUE
If the meaning of 'BUS' literal object isn't clear, there really should be more of a description here...
BUS
,
Constant Field Valuespublic static final int DATA_VALUE
If the meaning of 'DATA' literal object isn't clear, there really should be more of a description here...
DATA
,
Constant Field Valuespublic static final int SUBPROGRAM_VALUE
If the meaning of 'SUBPROGRAM' literal object isn't clear, there really should be more of a description here...
SUBPROGRAM
,
Constant Field Valuespublic static final int SUBPROGRAM_GROUP_VALUE
If the meaning of 'SUBPROGRAM GROUP' literal object isn't clear, there really should be more of a description here...
SUBPROGRAM_GROUP
,
Constant Field Valuespublic static final java.util.List<AccessKind> VALUES
public static AccessKind[] values()
for (AccessKind c : AccessKind.values()) System.out.println(c);
public static AccessKind 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 AccessKind get(java.lang.String literal)
public static AccessKind getByName(java.lang.String name)
public static AccessKind 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<AccessKind>