Package org.eclipse.rdf4j.query.algebra
Class AbstractAggregateOperator
java.lang.Object
org.eclipse.rdf4j.query.algebra.AbstractQueryModelNode
org.eclipse.rdf4j.query.algebra.UnaryValueOperator
org.eclipse.rdf4j.query.algebra.AbstractAggregateOperator
- All Implemented Interfaces:
Serializable
,Cloneable
,AggregateOperator
,QueryModelNode
,ValueExpr
,VariableScopeChange
- Direct Known Subclasses:
AggregateFunctionCall
,Avg
,Count
,GroupConcat
,Max
,Min
,Sample
,Sum
public abstract class AbstractAggregateOperator
extends UnaryValueOperator
implements AggregateOperator
Base class for shared functionality of aggregate operators (e.g. DISTINCT setting)
- Author:
- Jeen Broekstra
- See Also:
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.query.algebra.UnaryValueOperator
arg
-
Constructor Summary
ModifierConstructorDescriptionprotected
protected
AbstractAggregateOperator
(ValueExpr arg, boolean distinct) -
Method Summary
Modifier and TypeMethodDescriptionclone()
Returns a (deep) clone of this query model node.boolean
Returns true if this query model node and its children are recursively equal to o and its children.int
hashCode()
boolean
void
setDistinct
(boolean distinct) Methods inherited from class org.eclipse.rdf4j.query.algebra.UnaryValueOperator
getArg, replaceChildNode, setArg, visitChildren
Methods inherited from class org.eclipse.rdf4j.query.algebra.AbstractQueryModelNode
getCardinality, getCostEstimate, getParentNode, getResultSizeActual, getResultSizeEstimate, getSignature, getTotalTimeNanosActual, isCardinalitySet, isVariableScopeChange, nullEquals, replaceNodeInList, replaceWith, resetCardinality, setCardinality, setCostEstimate, setParentNode, setResultSizeActual, setResultSizeEstimate, setTotalTimeNanosActual, setVariableScopeChange, shouldCacheCardinality, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.query.algebra.QueryModelNode
getCostEstimate, getParentNode, getResultSizeActual, getResultSizeEstimate, getSignature, getTotalTimeNanosActual, replaceChildNode, replaceWith, setCostEstimate, setParentNode, setResultSizeActual, setResultSizeEstimate, setTotalTimeNanosActual, toString, visit, visitChildren
-
Constructor Details
-
AbstractAggregateOperator
-
AbstractAggregateOperator
-
-
Method Details
-
setDistinct
public void setDistinct(boolean distinct) - Specified by:
setDistinct
in interfaceAggregateOperator
-
isDistinct
public boolean isDistinct()- Specified by:
isDistinct
in interfaceAggregateOperator
-
equals
Description copied from interface:QueryModelNode
Returns true if this query model node and its children are recursively equal to o and its children.- Specified by:
equals
in interfaceQueryModelNode
- Overrides:
equals
in classUnaryValueOperator
-
hashCode
public int hashCode()- Overrides:
hashCode
in classUnaryValueOperator
-
clone
Description copied from interface:QueryModelNode
Returns a (deep) clone of this query model node. This method recursively clones the entire node tree, starting from this nodes.- Specified by:
clone
in interfaceAggregateOperator
- Specified by:
clone
in interfaceQueryModelNode
- Specified by:
clone
in interfaceValueExpr
- Overrides:
clone
in classUnaryValueOperator
- Returns:
- A deep clone of this query model node.
-