Uses of Interface
org.eclipse.datatools.modelbase.sql.datatypes.CollectionDataType

Packages that use CollectionDataType
org.eclipse.datatools.modelbase.sql.datatypes   
org.eclipse.datatools.modelbase.sql.datatypes.impl   
org.eclipse.datatools.modelbase.sql.datatypes.util   
org.eclipse.datatools.modelbase.sql.query.util   
 

Uses of CollectionDataType in org.eclipse.datatools.modelbase.sql.datatypes
 

Subinterfaces of CollectionDataType in org.eclipse.datatools.modelbase.sql.datatypes
 interface ArrayDataType
          A representation of the model object 'Array Data Type'.
 interface MultisetDataType
          A representation of the model object 'Multiset Data Type'.
 

Methods in org.eclipse.datatools.modelbase.sql.datatypes that return CollectionDataType
 CollectionDataType ElementType.getCollectionDataType()
          Returns the value of the 'Collection Data Type' container reference.
 

Methods in org.eclipse.datatools.modelbase.sql.datatypes with parameters of type CollectionDataType
 void ElementType.setCollectionDataType(CollectionDataType value)
          Sets the value of the 'Collection Data Type' container reference.
 

Uses of CollectionDataType in org.eclipse.datatools.modelbase.sql.datatypes.impl
 

Classes in org.eclipse.datatools.modelbase.sql.datatypes.impl that implement CollectionDataType
 class org.eclipse.datatools.modelbase.sql.datatypes.impl.ArrayDataTypeImpl
           
 class org.eclipse.datatools.modelbase.sql.datatypes.impl.CollectionDataTypeImpl
           
 class org.eclipse.datatools.modelbase.sql.datatypes.impl.MultisetDataTypeImpl
           
 

Uses of CollectionDataType in org.eclipse.datatools.modelbase.sql.datatypes.util
 

Methods in org.eclipse.datatools.modelbase.sql.datatypes.util with parameters of type CollectionDataType
 java.lang.Object SQLDataTypesSwitch.caseCollectionDataType(CollectionDataType object)
          Returns the result of interpreting the object as an instance of 'Collection Data Type'.
 

Uses of CollectionDataType in org.eclipse.datatools.modelbase.sql.query.util
 

Subinterfaces of CollectionDataType in org.eclipse.datatools.modelbase.sql.query.util
 interface SQLQueryArrayDataType
          The SQL Model SQLDataTypesFactory class does not provide a method to create an ArrayDataType, and the constructor of ArrayDataTypeImpl is protected, so we need to provide our own interface Impl class so that the SQL Query Parser Factor can create them and the SQL Query Source Writer can generate SQL for them.
 interface SQLQueryMultisetDataType
          The SQL Model SQLDataTypesFactory class does not provide a method to create a MultisetDataType, and the constructor of MultisetDataTypeImpl is protected, so we need to provide our own interface Impl class so that the SQL Query Parser Factor can create them and the SQL Query Source Writer can generate SQL for them.
 

Classes in org.eclipse.datatools.modelbase.sql.query.util that implement CollectionDataType
 class SQLQueryArrayDataTypeImpl
          The SQL Model SQLDataTypesFactory class does not provide a method to create an ArrayDataType, and the constructor of ArrayDataTypeImpl is protected, so we need to provide our own interface Impl class so that the SQL Query Parser Factor can create them and the SQL Query Source Writer can generate SQL for them.
 class SQLQueryMultisetDataTypeImpl
          The SQL Model SQLDataTypesFactory class does not provide a method to create an ArrayDataType, and the constructor of ArrayDataTypeImpl is protected, so we need to provide our own interface Impl class so that the SQL Query Parser Factor can create them and the SQL Query Source Writer can generate SQL for them.