rdf4j-postgis  Version 0.1.0.0
AggCentroid Class Reference
Inheritance diagram for AggCentroid:
Collaboration diagram for AggCentroid:

Public Member Functions

 AggCentroid (ValueExpr arg)
 
 AggCentroid (ValueExpr arg, boolean distinct)
 
boolean equals (Object other)
 
int hashCode ()
 
AggCentroid clone ()
 

Package Functions

public< X extends Exception > void visit (QueryModelVisitor< X > visitor) throws X
 

Constructor & Destructor Documentation

◆ AggCentroid() [1/2]

AggCentroid ( ValueExpr  arg)
9  {
10  super(arg);
11  }

◆ AggCentroid() [2/2]

AggCentroid ( ValueExpr  arg,
boolean  distinct 
)
13  {
14  super(arg, distinct);
15  }

Member Function Documentation

◆ clone()

AggCentroid clone ( )
33  {
34  return (AggCentroid) super.clone();
35  }

References AggCentroid.clone().

Referenced by AggCentroid.clone().

◆ equals()

boolean equals ( Object  other)
23  {
24  return other instanceof AggCentroid && super.equals(other);
25  }

References AggCentroid.equals().

Referenced by AggCentroid.equals(), ConcatenateLines.equals(), and GeomUnion.equals().

◆ hashCode()

int hashCode ( )
28  {
29  return super.hashCode() ^ "AggCentroid".hashCode();
30  }

◆ visit()

public<X extends Exception> void visit ( QueryModelVisitor< X >  visitor) throws X
package
18  {
19  visitor.meet(this);
20  }