Package com.sodius.mdw.metamodel.uml21
Class ParameterEffectKind
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.sodius.mdw.metamodel.uml21.ParameterEffectKind
-
- All Implemented Interfaces:
Serializable
,org.eclipse.emf.common.util.Enumerator
public final class ParameterEffectKind extends org.eclipse.emf.common.util.AbstractEnumerator
A representation of the literals of the enumeration 'Parameter Effect Kind', and utility methods for working with them. The datatype ParameterEffectKind is an enumeration that indicates the effect of a behavior on values passed in or out of its parameters.
-
-
Field Summary
Fields Modifier and Type Field Description static int
CREATE
The 'Create' literal value.static ParameterEffectKind
CREATE_LITERAL
The 'Create' literal object.static int
DELETE
The 'Delete' literal value.static ParameterEffectKind
DELETE_LITERAL
The 'Delete' literal object.static int
READ
The 'Read' literal value.static ParameterEffectKind
READ_LITERAL
The 'Read' literal object.static int
UPDATE
The 'Update' literal value.static ParameterEffectKind
UPDATE_LITERAL
The 'Update' literal object.static List
VALUES
A public read-only list of all the 'Parameter Effect Kind' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParameterEffectKind
get(int value)
Returns the 'Parameter Effect Kind' literal with the specified integer value.static ParameterEffectKind
get(String literal)
Returns the 'Parameter Effect Kind' literal with the specified literal value.static ParameterEffectKind
getByName(String name)
Returns the 'Parameter Effect Kind' literal with the specified name.
-
-
-
Field Detail
-
CREATE
public static final int CREATE
The 'Create' literal value. Indicates that the behavior creates values.- See Also:
CREATE_LITERAL
, Constant Field Values
-
READ
public static final int READ
The 'Read' literal value. Indicates that the behavior reads values.- See Also:
READ_LITERAL
, Constant Field Values
-
UPDATE
public static final int UPDATE
The 'Update' literal value. Indicates that the behavior updates values.- See Also:
UPDATE_LITERAL
, Constant Field Values
-
DELETE
public static final int DELETE
The 'Delete' literal value. Indicates that the behavior deletes values.- See Also:
DELETE_LITERAL
, Constant Field Values
-
CREATE_LITERAL
public static final ParameterEffectKind CREATE_LITERAL
The 'Create' literal object.- See Also:
CREATE
-
READ_LITERAL
public static final ParameterEffectKind READ_LITERAL
The 'Read' literal object.- See Also:
READ
-
UPDATE_LITERAL
public static final ParameterEffectKind UPDATE_LITERAL
The 'Update' literal object.- See Also:
UPDATE
-
DELETE_LITERAL
public static final ParameterEffectKind DELETE_LITERAL
The 'Delete' literal object.- See Also:
DELETE
-
VALUES
public static final List VALUES
A public read-only list of all the 'Parameter Effect Kind' enumerators.
-
-
Method Detail
-
get
public static ParameterEffectKind get(String literal)
Returns the 'Parameter Effect Kind' literal with the specified literal value.
-
getByName
public static ParameterEffectKind getByName(String name)
Returns the 'Parameter Effect Kind' literal with the specified name.
-
get
public static ParameterEffectKind get(int value)
Returns the 'Parameter Effect Kind' literal with the specified integer value.
-
-