rdf4j-postgis  Version 0.1.0.0
AvgZ Class Reference

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

Inheritance diagram for AvgZ:
Collaboration diagram for AvgZ:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = 3629984495652496978L
 

Detailed Description

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

Constructor & Destructor Documentation

◆ AvgZ() [1/2]

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

◆ AvgZ() [2/2]

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

Member Function Documentation

◆ clone()

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

References AvgZ.clone().

Referenced by AvgZ.clone().

◆ equals()

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

References AvgZ.equals().

Referenced by AvgZ.equals().

◆ hashCode()

int hashCode ( )
37  {
38  return super.hashCode() ^ "AvgZ".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 = 3629984495652496978L
staticprivate