rdf4j-postgis  Version 0.1.0.0
AvgX Class Reference

Aggregate function to find the average x coordinate of a set of geometries. More...

Inheritance diagram for AvgX:
Collaboration diagram for AvgX:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = -4165503381085356852L
 

Detailed Description

Aggregate function to find the average x coordinate of a set of geometries.

Constructor & Destructor Documentation

◆ AvgX() [1/2]

AvgX ( ValueExpr  arg)
18  {
19  super(arg);
20  }

◆ AvgX() [2/2]

AvgX ( ValueExpr  arg,
boolean  distinct 
)
22  {
23  super(arg, distinct);
24  }

Member Function Documentation

◆ clone()

AvgX clone ( )
42  {
43  return (AvgX) super.clone();
44  }

References AvgX.clone().

Referenced by AvgX.clone().

◆ equals()

boolean equals ( Object  other)
32  {
33  return other instanceof AvgX && super.equals(other);
34  }

References AvgX.equals().

Referenced by AvgX.equals().

◆ hashCode()

int hashCode ( )
37  {
38  return super.hashCode() ^ "AvgX".hashCode();
39  }

◆ visit()

public<X extends Exception> void visit ( QueryModelVisitor< X >  visitor) throws X
package
27  {
28  visitor.meet(this);
29  }

Member Data Documentation

◆ serialVersionUID

final long serialVersionUID = -4165503381085356852L
staticprivate