Uses of Class
org.eclipse.datatools.connectivity.oda.spec.result.CustomAggregate

Packages that use CustomAggregate
org.eclipse.datatools.connectivity.oda.spec.manifest Provides a utility component for accessing the capabilities registered by an ODA extension that implements the org.eclipse.datatools.connectivity.oda.dynamicResultSet extension point. 
org.eclipse.datatools.connectivity.oda.spec.result Defines the result set specification of the Open Data Access (ODA) dynamicResultSet extension point. 
org.eclipse.datatools.connectivity.oda.spec.util Defines utilities for use with the Open Data Access (ODA) query specification. 
 

Uses of CustomAggregate in org.eclipse.datatools.connectivity.oda.spec.manifest
 

Methods in org.eclipse.datatools.connectivity.oda.spec.manifest that return CustomAggregate
 CustomAggregate AggregateDefinition.createExpression()
          Creates and returns an instance of CustomAggregate for use in an ODA aggregate projection specification, based on the class defined in the attribute specified in this definition.
 CustomAggregate AggregateDefinition.createExpression(ExpressionVariable variable)
          Creates and returns an instance of CustomAggregate for use in an ODA aggregate projection specification, based on the class defined in the attribute specified in this definition.
 

Uses of CustomAggregate in org.eclipse.datatools.connectivity.oda.spec.result
 

Methods in org.eclipse.datatools.connectivity.oda.spec.result that return CustomAggregate
static CustomAggregate InternalResultSpecFactory.createCustomAggregate(java.lang.String extensionId, java.lang.String id)
           
static CustomAggregate InternalResultSpecFactory.createCustomAggregate(java.lang.String extensionId, java.lang.String id, ExpressionVariable inputSourceVar)
           
 

Uses of CustomAggregate in org.eclipse.datatools.connectivity.oda.spec.util
 

Methods in org.eclipse.datatools.connectivity.oda.spec.util that return CustomAggregate
static CustomAggregate ExpressionFactory.createCustomAggregate(java.lang.String extensionId, java.lang.String exprId)
          Creates a custom aggregate expression instance of the specified aggregate expression contributed by the specified dynamicResultSet extension.
static CustomAggregate ExpressionFactory.createCustomAggregate(java.lang.String extensionId, java.lang.String exprId, ExpressionVariable variable)
          Creates a custom aggregate expression instance, with the given expression variable, of the specified aggregate expression contributed by the specified dynamicResultSet extension.
 

Methods in org.eclipse.datatools.connectivity.oda.spec.util with parameters of type CustomAggregate
static void ValidatorUtil.validateCustomExprExtension(CustomAggregate customAggrExpr, java.lang.String expectedExtensionId)
          Validates that the specified CustomAggregate is contributed by the specified dynamicResultSet extension id.
static void ValidatorUtil.validateCustomExprType(CustomAggregate customExpr, java.lang.Class<?> expectedExprClass)
          Validates the specified CustomAggregate to be an instance of the specified class.
static void ValidatorUtil.validateSupportedVariableTypes(CustomAggregate expr, ExpressionVariable.VariableType[] supportedVarTypes)
          Validates that the input expression variable of the specified aggregate expression is one of the specified variable types.