Class CallConcurrencyKind

  • All Implemented Interfaces:
    Serializable, org.eclipse.emf.common.util.Enumerator

    public final class CallConcurrencyKind
    extends org.eclipse.emf.common.util.AbstractEnumerator
    A representation of the literals of the enumeration 'Call Concurrency Kind', and utility methods for working with them. CallConcurrencyKind is an enumeration type.
    See Also:
    UMLPackage.getCallConcurrencyKind(), Serialized Form
    • Field Detail

      • SEQUENTIAL

        public static final int SEQUENTIAL
        The 'Sequential' literal value. No concurrency management mechanism is associated with the operation and, therefore, concurrency conflicts may occur. Instances that invoke a behavioral feature need to coordinate so that only one invocation to a target on any behavioral feature occurs at once.
        See Also:
        SEQUENTIAL_LITERAL, Constant Field Values
      • GUARDED

        public static final int GUARDED
        The 'Guarded' literal value. Multiple invocations of a behavioral feature may occur simultaneously to one instance, but only one is allowed to commence. The others are blocked until the performance of the first behavioral feature is complete. It is the responsibility of the system designer to ensure that deadlocks do not occur due to simultaneous blocks.
        See Also:
        GUARDED_LITERAL, Constant Field Values
      • CONCURRENT

        public static final int CONCURRENT
        The 'Concurrent' literal value. Multiple invocations of a behavioral feature may occur simultaneously to one instance and all of them may proceed concurrently.
        See Also:
        CONCURRENT_LITERAL, Constant Field Values
      • VALUES

        public static final List VALUES
        A public read-only list of all the 'Call Concurrency Kind' enumerators.
    • Method Detail

      • get

        public static CallConcurrencyKind get​(String literal)
        Returns the 'Call Concurrency Kind' literal with the specified literal value.
      • getByName

        public static CallConcurrencyKind getByName​(String name)
        Returns the 'Call Concurrency Kind' literal with the specified name.
      • get

        public static CallConcurrencyKind get​(int value)
        Returns the 'Call Concurrency Kind' literal with the specified integer value.