Class ExpansionKindEnum
- java.lang.Object
-
- org.eclipse.emf.common.util.AbstractEnumerator
-
- com.nomagic.uml2.ext.magicdraw.activities.mdextrastructuredactivities.ExpansionKindEnum
-
- All Implemented Interfaces:
ExpansionKind
,java.io.Serializable
,javax.jmi.reflect.RefEnum
,org.eclipse.emf.common.util.Enumerator
public final class ExpansionKindEnum extends org.eclipse.emf.common.util.AbstractEnumerator implements ExpansionKind
A representation of the literals of the enumeration 'Expansion Kind', and utility methods for working with them. ExpansionKind is an enumeration type used to specify how an ExpansionRegion executes its contents.- See Also:
com.nomagic.uml2.ext.magicdraw.metadata.UMLPackage#getExpansionKindEnum()
, Serialized Form- Model:
- annotation="MOF package='activities.mdextrastructuredactivities'"
- Generated:
-
-
Field Summary
Fields Modifier and Type Field Description static ExpansionKind
ITERATIVE
The 'Iterative' literal object.static int
ITERATIVE_VALUE
The 'Iterative' literal value.static ExpansionKind
PARALLEL
The 'Parallel' literal object.static int
PARALLEL_VALUE
The 'Parallel' literal value.static ExpansionKind
STREAM
The 'Stream' literal object.static int
STREAM_VALUE
The 'Stream' literal value.static java.util.List
VALUES
A public read-only list of all the 'Expansion Kind' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExpansionKindEnum
get(int value)
Returns the 'Expansion Kind' literal with the specified integer value.static ExpansionKindEnum
get(java.lang.String literal)
Returns the 'Expansion Kind' literal with the specified literal value.static ExpansionKindEnum
getByName(java.lang.String name)
Returns the 'Expansion Kind' literal with the specified name.java.util.List
refTypeName()
-
Methods inherited from class org.eclipse.emf.common.util.AbstractEnumerator
getLiteral, getName, getValue, toString, writeReplace
-
-
-
-
Field Detail
-
PARALLEL_VALUE
public static final int PARALLEL_VALUE
The 'Parallel' literal value. The content of the ExpansionRegion is executed concurrently for the elements of the input collections.- See Also:
PARALLEL
, Constant Field Values- Model:
- name="parallel"
- Generated:
-
ITERATIVE_VALUE
public static final int ITERATIVE_VALUE
The 'Iterative' literal value. The content of the ExpansionRegion is executed iteratively for the elements of the input collections, in the order of the input elements, if the collections are ordered.- See Also:
ITERATIVE
, Constant Field Values- Model:
- name="iterative"
- Generated:
-
STREAM_VALUE
public static final int STREAM_VALUE
The 'Stream' literal value. A stream of input collection elements flows into a single execution of the content of the ExpansionRegion, in the order of the collection elements if the input collections are ordered.- See Also:
STREAM
, Constant Field Values- Model:
- name="stream"
- Generated:
-
PARALLEL
public static final ExpansionKind PARALLEL
The 'Parallel' literal object.- See Also:
PARALLEL_VALUE
- Generated:
-
ITERATIVE
public static final ExpansionKind ITERATIVE
The 'Iterative' literal object.- See Also:
ITERATIVE_VALUE
- Generated:
-
STREAM
public static final ExpansionKind STREAM
The 'Stream' literal object.- See Also:
STREAM_VALUE
- Generated:
-
VALUES
public static final java.util.List VALUES
A public read-only list of all the 'Expansion Kind' enumerators.- Generated:
-
-
Method Detail
-
refTypeName
public java.util.List refTypeName()
- Specified by:
refTypeName
in interfacejavax.jmi.reflect.RefEnum
-
get
public static ExpansionKindEnum get(java.lang.String literal)
Returns the 'Expansion Kind' literal with the specified literal value.- Generated:
-
getByName
public static ExpansionKindEnum getByName(java.lang.String name)
Returns the 'Expansion Kind' literal with the specified name.- Generated:
-
get
public static ExpansionKindEnum get(int value)
Returns the 'Expansion Kind' literal with the specified integer value.- Generated:
-
-