Uses of Class
org.eclipse.ocl.examples.pivot.TransitionKind

Packages that use TransitionKind
org.eclipse.ocl.examples.pivot   
org.eclipse.ocl.examples.pivot.internal.impl   
org.eclipse.ocl.examples.pivot.util   
 

Uses of TransitionKind in org.eclipse.ocl.examples.pivot
 

Fields in org.eclipse.ocl.examples.pivot with type parameters of type TransitionKind
static java.util.List<TransitionKind> TransitionKind.VALUES
          A public read-only list of all the 'Transition Kind' enumerators.
 

Methods in org.eclipse.ocl.examples.pivot that return TransitionKind
static TransitionKind TransitionKind.get(int value)
          Returns the 'Transition Kind' literal with the specified integer value.
static TransitionKind TransitionKind.get(java.lang.String literal)
          Returns the 'Transition Kind' literal with the specified literal value.
static TransitionKind TransitionKind.getByName(java.lang.String name)
          Returns the 'Transition Kind' literal with the specified name.
 TransitionKind Transition.getKind()
          Returns the value of the 'Kind' attribute.
static TransitionKind TransitionKind.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TransitionKind[] TransitionKind.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.eclipse.ocl.examples.pivot with parameters of type TransitionKind
 void Transition.setKind(TransitionKind value)
          Sets the value of the 'Kind' attribute.
 

Uses of TransitionKind in org.eclipse.ocl.examples.pivot.internal.impl
 

Fields in org.eclipse.ocl.examples.pivot.internal.impl declared as TransitionKind
protected static TransitionKind TransitionImpl.KIND_EDEFAULT
          The default value of the 'Kind' attribute.
 

Methods in org.eclipse.ocl.examples.pivot.internal.impl that return TransitionKind
 TransitionKind PivotFactoryImpl.createTransitionKindFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 TransitionKind TransitionImpl.getKind()
           
 

Methods in org.eclipse.ocl.examples.pivot.internal.impl with parameters of type TransitionKind
 void TransitionImpl.setKind(TransitionKind newKind)
           
 

Uses of TransitionKind in org.eclipse.ocl.examples.pivot.util
 

Methods in org.eclipse.ocl.examples.pivot.util with parameters of type TransitionKind
 boolean PivotValidator.validateTransitionKind(TransitionKind transitionKind, org.eclipse.emf.common.util.DiagnosticChain diagnostics, java.util.Map<java.lang.Object,java.lang.Object> context)