Class TransitionKindEnum
java.lang.Object
org.eclipse.emf.common.util.AbstractEnumerator
com.nomagic.uml2.ext.magicdraw.statemachines.mdbehaviorstatemachines.TransitionKindEnum
- All Implemented Interfaces:
TransitionKind
,Serializable
,javax.jmi.reflect.RefEnum
,org.eclipse.emf.common.util.Enumerator
public final class TransitionKindEnum
extends org.eclipse.emf.common.util.AbstractEnumerator
implements TransitionKind
A representation of the literals of the enumeration 'Transition Kind',
and utility methods for working with them.
TransitionKind is an Enumeration type used to differentiate the various kinds of Transitions.
- See Also:
-
com.nomagic.uml2.ext.magicdraw.metadata.UMLPackage#getTransitionKindEnum()
- Serialized Form
- Model:
- annotation="MOF package='statemachines.mdbehaviorstatemachines'"
- Generated:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final TransitionKind
The 'External' literal object.static final int
The 'External' literal value.static final TransitionKind
The 'Internal' literal object.static final int
The 'Internal' literal value.static final TransitionKind
The 'Local' literal object.static final int
The 'Local' literal value.static final List
A public read-only list of all the 'Transition Kind' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic TransitionKindEnum
get
(int value) Returns the 'Transition Kind' literal with the specified integer value.static TransitionKindEnum
Returns the 'Transition Kind' literal with the specified literal value.static TransitionKindEnum
Returns the 'Transition 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
-
INTERNAL_VALUE
public static final int INTERNAL_VALUEThe 'Internal' literal value. Implies that the Transition, if triggered, occurs without exiting or entering the source State (i.e., it does not cause a state change). This means that the entry or exit condition of the source State will not be invoked. An internal Transition can be taken even if the SateMachine is in one or more Regions nested within the associated State.- See Also:
- Model:
- name="internal"
- Generated:
-
LOCAL_VALUE
public static final int LOCAL_VALUEThe 'Local' literal value. Implies that the Transition, if triggered, will not exit the composite (source) State, but it will exit and re-enter any state within the composite State that is in the current state configuration.- See Also:
- Model:
- name="local"
- Generated:
-
EXTERNAL_VALUE
public static final int EXTERNAL_VALUEThe 'External' literal value. Implies that the Transition, if triggered, will exit the composite (source) State.- See Also:
- Model:
- name="external"
- Generated:
-
INTERNAL
The 'Internal' literal object.- See Also:
- Generated:
-
LOCAL
The 'Local' literal object.- See Also:
- Generated:
-
EXTERNAL
The 'External' literal object.- See Also:
- Generated:
-
VALUES
A public read-only list of all the 'Transition Kind' enumerators.- Generated:
-
-
Method Details
-
refTypeName
- Specified by:
refTypeName
in interfacejavax.jmi.reflect.RefEnum
-
get
Returns the 'Transition Kind' literal with the specified literal value.- Generated:
-
getByName
Returns the 'Transition Kind' literal with the specified name.- Generated:
-
get
Returns the 'Transition Kind' literal with the specified integer value.- Generated:
-