rdf4j-postgis  Version 0.1.0.0
MaxZ Class Reference

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

Inheritance diagram for MaxZ:
Collaboration diagram for MaxZ:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = -7564400908836828357L
 

Detailed Description

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

Constructor & Destructor Documentation

◆ MaxZ() [1/2]

MaxZ ( ValueExpr  arg)
19  {
20  super(arg);
21  }

◆ MaxZ() [2/2]

MaxZ ( ValueExpr  arg,
boolean  distinct 
)
23  {
24  super(arg, distinct);
25  }

Member Function Documentation

◆ clone()

MaxZ clone ( )
43  {
44  return (MaxZ) super.clone();
45  }

References MaxZ.clone().

Referenced by MaxZ.clone().

◆ equals()

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

References MaxZ.equals().

Referenced by MaxZ.equals().

◆ hashCode()

int hashCode ( )
38  {
39  return super.hashCode() ^ "MaxZ".hashCode();
40  }

◆ visit()

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

Member Data Documentation

◆ serialVersionUID

final long serialVersionUID = -7564400908836828357L
staticprivate