Class CallConcurrencyKindEnum
java.lang.Object
org.eclipse.emf.common.util.AbstractEnumerator
com.nomagic.uml2.ext.magicdraw.commonbehaviors.mdcommunications.CallConcurrencyKindEnum
- All Implemented Interfaces:
CallConcurrencyKind
,Serializable
,javax.jmi.reflect.RefEnum
,org.eclipse.emf.common.util.Enumerator
public final class CallConcurrencyKindEnum
extends org.eclipse.emf.common.util.AbstractEnumerator
implements CallConcurrencyKind
A representation of the literals of the enumeration 'Call Concurrency Kind',
and utility methods for working with them.
CallConcurrencyKind is an Enumeration used to specify the semantics of concurrent calls to a BehavioralFeature.
- See Also:
-
com.nomagic.uml2.ext.magicdraw.metadata.UMLPackage#getCallConcurrencyKindEnum()
- Serialized Form
- Model:
- annotation="MOF package='commonbehaviors.mdcommunications'"
- Generated:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final CallConcurrencyKind
The 'Concurrent' literal object.static final int
The 'Concurrent' literal value.static final CallConcurrencyKind
The 'Guarded' literal object.static final int
The 'Guarded' literal value.static final CallConcurrencyKind
The 'Sequential' literal object.static final int
The 'Sequential' literal value.static final List
A public read-only list of all the 'Call Concurrency Kind' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic CallConcurrencyKindEnum
get
(int value) Returns the 'Call Concurrency Kind' literal with the specified integer value.static CallConcurrencyKindEnum
Returns the 'Call Concurrency Kind' literal with the specified literal value.static CallConcurrencyKindEnum
Returns the 'Call Concurrency Kind' literal with the specified name.Methods inherited from class org.eclipse.emf.common.util.AbstractEnumerator
getLiteral, getName, getValue, toString, writeReplace
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface javax.jmi.reflect.RefEnum
equals, hashCode, toString
-
Field Details
-
SEQUENTIAL_VALUE
public static final int SEQUENTIAL_VALUEThe 'Sequential' literal value. No concurrency management mechanism is associated with the BehavioralFeature and, therefore, concurrency conflicts may occur. Instances that invoke a BehavioralFeature need to coordinate so that only one invocation to a target on any BehavioralFeature occurs at once.- See Also:
- Model:
- name="sequential"
- Generated:
-
GUARDED_VALUE
public static final int GUARDED_VALUEThe 'Guarded' literal value. Multiple invocations of a BehavioralFeature that overlap in time may occur to one instance, but only one is allowed to commence. The others are blocked until the performance of the currently executing BehavioralFeature is complete. It is the responsibility of the system designer to ensure that deadlocks do not occur due to simultaneous blocking.- See Also:
- Model:
- name="guarded"
- Generated:
-
CONCURRENT_VALUE
public static final int CONCURRENT_VALUEThe 'Concurrent' literal value. Multiple invocations of a BehavioralFeature that overlap in time may occur to one instance and all of them may proceed concurrently.- See Also:
- Model:
- name="concurrent"
- Generated:
-
SEQUENTIAL
The 'Sequential' literal object.- See Also:
- Generated:
-
GUARDED
The 'Guarded' literal object.- See Also:
- Generated:
-
CONCURRENT
The 'Concurrent' literal object.- See Also:
- Generated:
-
VALUES
A public read-only list of all the 'Call Concurrency Kind' enumerators.- Generated:
-
-
Method Details
-
refTypeName
- Specified by:
refTypeName
in interfacejavax.jmi.reflect.RefEnum
-
get
Returns the 'Call Concurrency Kind' literal with the specified literal value.- Generated:
-
getByName
Returns the 'Call Concurrency Kind' literal with the specified name.- Generated:
-
get
Returns the 'Call Concurrency Kind' literal with the specified integer value.- Generated:
-