public enum FunctionKind extends java.lang.Enum<FunctionKind> implements org.eclipse.emf.common.util.Enumerator
FaPackage.getFunctionKind()| Enum Constant and Description |
|---|
DUPLICATE
The 'DUPLICATE' literal object.
|
FUNCTION
The 'FUNCTION' literal object.
|
GATHER
The 'GATHER' literal object.
|
ROUTE
The 'ROUTE' literal object.
|
SELECT
The 'SELECT' literal object.
|
SPLIT
The 'SPLIT' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DUPLICATE_VALUE
The 'DUPLICATE' literal value.
|
static int |
FUNCTION_VALUE
The 'FUNCTION' literal value.
|
static int |
GATHER_VALUE
The 'GATHER' literal value.
|
static int |
ROUTE_VALUE
The 'ROUTE' literal value.
|
static int |
SELECT_VALUE
The 'SELECT' literal value.
|
static int |
SPLIT_VALUE
The 'SPLIT' literal value.
|
static java.util.List<FunctionKind> |
VALUES
A public read-only list of all the 'Function Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static FunctionKind |
get(int value)
Returns the 'Function Kind' literal with the specified integer value.
|
static FunctionKind |
get(java.lang.String literal)
Returns the 'Function Kind' literal with the specified literal value.
|
static FunctionKind |
getByName(java.lang.String name)
Returns the 'Function 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 FunctionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FunctionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionKind FUNCTION
FUNCTION_VALUEpublic static final FunctionKind DUPLICATE
DUPLICATE_VALUEpublic static final FunctionKind GATHER
GATHER_VALUEpublic static final FunctionKind SELECT
SELECT_VALUEpublic static final FunctionKind SPLIT
SPLIT_VALUEpublic static final FunctionKind ROUTE
ROUTE_VALUEpublic static final int FUNCTION_VALUE
If the meaning of 'FUNCTION' literal object isn't clear, there really should be more of a description here...
FUNCTION,
Constant Field Valuespublic static final int DUPLICATE_VALUE
If the meaning of 'DUPLICATE' literal object isn't clear, there really should be more of a description here...
DUPLICATE,
Constant Field Valuespublic static final int GATHER_VALUE
If the meaning of 'GATHER' literal object isn't clear, there really should be more of a description here...
GATHER,
Constant Field Valuespublic static final int SELECT_VALUE
If the meaning of 'SELECT' literal object isn't clear, there really should be more of a description here...
SELECT,
Constant Field Valuespublic static final int SPLIT_VALUE
If the meaning of 'SPLIT' literal object isn't clear, there really should be more of a description here...
SPLIT,
Constant Field Valuespublic static final int ROUTE_VALUE
If the meaning of 'ROUTE' literal object isn't clear, there really should be more of a description here...
ROUTE,
Constant Field Valuespublic static final java.util.List<FunctionKind> VALUES
public static FunctionKind[] values()
for (FunctionKind c : FunctionKind.values()) System.out.println(c);
public static FunctionKind 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 FunctionKind get(java.lang.String literal)
literal - the literal.null.public static FunctionKind getByName(java.lang.String name)
name - the name.null.public static FunctionKind get(int value)
value - the integer value.null.public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<FunctionKind>