public enum ParameterEffectKind extends java.lang.Enum<ParameterEffectKind> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
CREATE
The 'Create' literal object.
|
DELETE
The 'Delete' literal object.
|
READ
The 'Read' literal object.
|
UPDATE
The 'Update' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
CREATE_VALUE
The 'Create' literal value.
|
static int |
DELETE_VALUE
The 'Delete' literal value.
|
static int |
READ_VALUE
The 'Read' literal value.
|
static int |
UPDATE_VALUE
The 'Update' literal value.
|
static java.util.List<ParameterEffectKind> |
VALUES
A public read-only list of all the 'Parameter Effect Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterEffectKind |
get(int value)
Returns the 'Parameter Effect Kind' literal with the specified integer value.
|
static ParameterEffectKind |
get(java.lang.String literal)
Returns the 'Parameter Effect Kind' literal with the specified literal value.
|
static ParameterEffectKind |
getByName(java.lang.String name)
Returns the 'Parameter Effect 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 ParameterEffectKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParameterEffectKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterEffectKind CREATE
CREATE_VALUEpublic static final ParameterEffectKind READ
READ_VALUEpublic static final ParameterEffectKind UPDATE
UPDATE_VALUEpublic static final ParameterEffectKind DELETE
DELETE_VALUEpublic static final int CREATE_VALUE
If the meaning of 'Create' literal object isn't clear, there really should be more of a description here...
CREATE,
Constant Field Valuespublic static final int READ_VALUE
If the meaning of 'Read' literal object isn't clear, there really should be more of a description here...
READ,
Constant Field Valuespublic static final int UPDATE_VALUE
If the meaning of 'Update' literal object isn't clear, there really should be more of a description here...
UPDATE,
Constant Field Valuespublic static final int DELETE_VALUE
If the meaning of 'Delete' literal object isn't clear, there really should be more of a description here...
DELETE,
Constant Field Valuespublic static final java.util.List<ParameterEffectKind> VALUES
public static ParameterEffectKind[] values()
for (ParameterEffectKind c : ParameterEffectKind.values()) System.out.println(c);
public static ParameterEffectKind 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 ParameterEffectKind get(java.lang.String literal)
literal - the literal.null.public static ParameterEffectKind getByName(java.lang.String name)
name - the name.null.public static ParameterEffectKind 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<ParameterEffectKind>