public enum AccessCategory extends java.lang.Enum<AccessCategory> implements org.eclipse.emf.common.util.Enumerator
Aadl2Package.getAccessCategory()
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<AccessCategory> |
VALUES
A public read-only list of all the 'Access Category' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static AccessCategory |
get(int value)
Returns the 'Access Category' literal with the specified integer value.
|
static AccessCategory |
get(java.lang.String literal)
Returns the 'Access Category' literal with the specified literal value.
|
static AccessCategory |
getByName(java.lang.String name)
Returns the 'Access Category' 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 AccessCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessCategory BUS
BUS_VALUE
public static final AccessCategory DATA
DATA_VALUE
public static final AccessCategory SUBPROGRAM
SUBPROGRAM_VALUE
public static final AccessCategory 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<AccessCategory> VALUES
public static AccessCategory[] values()
for (AccessCategory c : AccessCategory.values()) System.out.println(c);
public static AccessCategory 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 AccessCategory get(java.lang.String literal)
public static AccessCategory getByName(java.lang.String name)
public static AccessCategory 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<AccessCategory>