public enum ConnectionKind extends java.lang.Enum<ConnectionKind> implements org.eclipse.emf.common.util.Enumerator
Aadl2Package.getConnectionKind()
Enum Constant and Description |
---|
ACCESS
The 'Access' literal object.
|
FEATURE
The 'Feature' literal object.
|
FEATURE_GROUP
The 'Feature Group' literal object.
|
PARAMETER
The 'Parameter' literal object.
|
PORT
The 'Port' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ACCESS_VALUE
The 'Access' literal value.
|
static int |
FEATURE_GROUP_VALUE
The 'Feature Group' literal value.
|
static int |
FEATURE_VALUE
The 'Feature' literal value.
|
static int |
PARAMETER_VALUE
The 'Parameter' literal value.
|
static int |
PORT_VALUE
The 'Port' literal value.
|
static java.util.List<ConnectionKind> |
VALUES
A public read-only list of all the 'Connection Kind' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static ConnectionKind |
get(int value)
Returns the 'Connection Kind' literal with the specified integer value.
|
static ConnectionKind |
get(java.lang.String literal)
Returns the 'Connection Kind' literal with the specified literal value.
|
static ConnectionKind |
getByName(java.lang.String name)
Returns the 'Connection 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 ConnectionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionKind ACCESS
ACCESS_VALUE
public static final ConnectionKind FEATURE
FEATURE_VALUE
public static final ConnectionKind FEATURE_GROUP
FEATURE_GROUP_VALUE
public static final ConnectionKind PARAMETER
PARAMETER_VALUE
public static final ConnectionKind PORT
PORT_VALUE
public static final int ACCESS_VALUE
If the meaning of 'Access' literal object isn't clear, there really should be more of a description here...
ACCESS
,
Constant Field Valuespublic static final int FEATURE_VALUE
If the meaning of 'Feature' literal object isn't clear, there really should be more of a description here...
FEATURE
,
Constant Field Valuespublic static final int FEATURE_GROUP_VALUE
If the meaning of 'Feature Group' literal object isn't clear, there really should be more of a description here...
FEATURE_GROUP
,
Constant Field Valuespublic static final int PARAMETER_VALUE
If the meaning of 'Parameter' literal object isn't clear, there really should be more of a description here...
PARAMETER
,
Constant Field Valuespublic static final int PORT_VALUE
If the meaning of 'Port' literal object isn't clear, there really should be more of a description here...
PORT
,
Constant Field Valuespublic static final java.util.List<ConnectionKind> VALUES
public static ConnectionKind[] values()
for (ConnectionKind c : ConnectionKind.values()) System.out.println(c);
public static ConnectionKind 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 ConnectionKind get(java.lang.String literal)
public static ConnectionKind getByName(java.lang.String name)
public static ConnectionKind 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<ConnectionKind>