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

Packages that use CollectionKind
org.eclipse.ocl.examples.pivot   
org.eclipse.ocl.examples.pivot.internal.impl   
org.eclipse.ocl.examples.pivot.util   
org.eclipse.ocl.examples.pivot.utilities   
org.eclipse.ocl.examples.pivot.values   
org.eclipse.ocl.examples.pivot.values.impl   
 

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

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

Methods in org.eclipse.ocl.examples.pivot that return CollectionKind
static CollectionKind CollectionKind.get(int value)
          Returns the 'Collection Kind' literal with the specified integer value.
static CollectionKind CollectionKind.get(java.lang.String literal)
          Returns the 'Collection Kind' literal with the specified literal value.
static CollectionKind CollectionKind.getByName(java.lang.String name)
          Returns the 'Collection Kind' literal with the specified name.
 CollectionKind CollectionLiteralExp.getKind()
          Returns the value of the 'Kind' attribute.
static CollectionKind CollectionKind.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CollectionKind[] CollectionKind.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 CollectionKind
 CollectionType OCLFactory.createCollectionType(CollectionKind kind, Type elementType)
          Returns a new object of class 'Collection Type'.
 void CollectionLiteralExp.setKind(CollectionKind value)
          Sets the value of the 'Kind' attribute.
 

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

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

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

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

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

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

Uses of CollectionKind in org.eclipse.ocl.examples.pivot.utilities
 

Methods in org.eclipse.ocl.examples.pivot.utilities that return CollectionKind
static CollectionKind PivotUtil.getCollectionKind(CollectionType collectionType)
           
 

Methods in org.eclipse.ocl.examples.pivot.utilities with parameters of type CollectionKind
 CollectionType OCLFactoryImpl.createCollectionType(CollectionKind kind, Type elementType)
           
 

Uses of CollectionKind in org.eclipse.ocl.examples.pivot.values
 

Methods in org.eclipse.ocl.examples.pivot.values that return CollectionKind
 CollectionKind CollectionValue.getKind()
           
 

Methods in org.eclipse.ocl.examples.pivot.values with parameters of type CollectionKind
 CollectionValue ValueFactory.createCollectionValue(CollectionKind kind, java.util.Collection<Value> values)
           
 CollectionValue ValueFactory.createCollectionValue(CollectionKind kind, Value... values)
           
 

Uses of CollectionKind in org.eclipse.ocl.examples.pivot.values.impl
 

Methods in org.eclipse.ocl.examples.pivot.values.impl that return CollectionKind
 CollectionKind AbstractSequenceValue.getKind()
           
 CollectionKind AbstractUndefinedCollectionValue.getKind()
           
 CollectionKind BagValueImpl.getKind()
           
 CollectionKind OrderedSetValueImpl.getKind()
           
 CollectionKind SetValueImpl.getKind()
           
 

Methods in org.eclipse.ocl.examples.pivot.values.impl with parameters of type CollectionKind
 CollectionValue ValueFactoryImpl.createCollectionValue(CollectionKind kind, java.util.Collection<Value> values)
           
 CollectionValue ValueFactoryImpl.createCollectionValue(CollectionKind kind, Value... values)