|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DirectionKind>
org.eclipse.modisco.infra.discovery.catalog.DirectionKind
public enum DirectionKind
A representation of the literals of the enumeration 'Direction Kind', and utility methods for working with them.
CatalogPackage.getDirectionKind()
Enum Constant Summary | |
---|---|
IN
The 'In' literal object. |
|
INOUT
The 'Inout' literal object. |
|
OUT
The 'Out' literal object. |
Field Summary | |
---|---|
static int |
IN_VALUE
The 'In' literal value. |
static int |
INOUT_VALUE
The 'Inout' literal value. |
static int |
OUT_VALUE
The 'Out' literal value. |
static java.util.List<DirectionKind> |
VALUES
A public read-only list of all the 'Direction Kind' enumerators. |
Method Summary | |
---|---|
static DirectionKind |
get(int value)
Returns the 'Direction Kind' literal with the specified integer value. |
static DirectionKind |
get(java.lang.String literal)
Returns the 'Direction Kind' literal with the specified literal value. |
static DirectionKind |
getByName(java.lang.String name)
Returns the 'Direction 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 DirectionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DirectionKind[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DirectionKind IN
IN_VALUE
public static final DirectionKind INOUT
INOUT_VALUE
public static final DirectionKind OUT
OUT_VALUE
Field Detail |
---|
public static final int IN_VALUE
If the meaning of 'In' literal object isn't clear, there really should be more of a description here...
IN
,
Constant Field Valuespublic static final int INOUT_VALUE
If the meaning of 'Inout' literal object isn't clear, there really should be more of a description here...
INOUT
,
Constant Field Valuespublic static final int OUT_VALUE
If the meaning of 'Out' literal object isn't clear, there really should be more of a description here...
OUT
,
Constant Field Valuespublic static final java.util.List<DirectionKind> VALUES
Method Detail |
---|
public static final DirectionKind[] values()
for(DirectionKind c : DirectionKind.values()) System.out.println(c);
public static DirectionKind 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 namepublic static DirectionKind get(java.lang.String literal)
public static DirectionKind getByName(java.lang.String name)
public static DirectionKind get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<DirectionKind>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |