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   
 

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
 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)