📄 aggregatedefinition.java
字号:
/* Derby - Class org.apache.derby.impl.sql.compile.AggregateDefinition Copyright 1999, 2004 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */package org.apache.derby.impl.sql.compile;import java.lang.StringBuffer;import org.apache.derby.catalog.TypeDescriptor;import java.sql.SQLException;/** * An AggregateDefinition defines an aggregate. * * It is used * by Cloudscape during query compilation to determine what * Aggregator is used to aggregate a particular data type * and what datatype the Aggregator will emit. A single * AggregateDefinition may map to one or more Aggregators * depending on the input type. For example, a user defined * STDEV aggregate may use one aggregator implementation for the * INTEGER type and another for a user defined type that implements * a point. In this case, both the aggregators would have a * single AggregateDefinition that would chose the appropriate * aggregator based on the input type. On the other hand, if * only a single aggregator is needed to aggregate over all * of the input types (e.g. COUNT()), then it may be convenient * to implement both the AggregateDefinition and the Aggregator * interfaces by the same class. * * @see org.apache.derby.catalog.TypeDescriptor */interface AggregateDefinition{ /** * Get the aggregator that performs the aggregation on the * input datatype at execution time. If the input type can be handled, * return a type descriptor with the resultant type information and * fill in the string buffer with the name of the class that * is used to perform the aggregation over the input type. * If the aggregate cannot be performed on this type, then * a null should be returned. * <p> * The aggregator class must implement a zero argument * constructor. The aggregator class can be the same class * as the AggregateDefinition if it implements both interfaces. * <p> * The result datatype may be the same as the input datatype * or a different datatype. To create your own type descriptor * to return to this method, see <i>com.ibm.db2j.types.TypeFactory</i>. * * @param inputType the input type descriptor * @param aggregatorClassName output parameter, filled in * with the class name that implements <i>com.ibm.db2j.aggregates.Aggregator</i> * * @return the output type descriptor (which may or may not * be the same as the input type -- it is ok to simply * return the input type). Null is returned * if the aggregate cannot process the input type. * Note that the output type may be a type that maps * directly to a standard SQL (e.g. <i>java.lang.Integer</i>) * or any other java type (e.g. <i>java.sql.ResultSet</i>, * <i>java.util.Vector</i>, <i>java.util.TimeZone</i> or whatever). * To construct a type descriptor see <i>com.ibm.db2j.types.TypeFactory</i>. * * @see org.apache.derby.catalog.TypeDescriptor * * @exception SQLException Thrown on error. */ public TypeDescriptor getAggregator(TypeDescriptor inputType, StringBuffer aggregatorClassName) throws SQLException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -