rdf4j-postgis  Version 0.1.0.0
MinZ Class Reference

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

Inheritance diagram for MinZ:
Collaboration diagram for MinZ:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = -6545650405164933961L
 

Detailed Description

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

Constructor & Destructor Documentation

◆ MinZ() [1/2]

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

◆ MinZ() [2/2]

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

Member Function Documentation

◆ clone()

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

References MinZ.clone().

Referenced by MinZ.clone().

◆ equals()

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

References MinZ.equals().

Referenced by MinZ.equals().

◆ hashCode()

int hashCode ( )
38  {
39  return super.hashCode() ^ "MinZ".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 = -6545650405164933961L
staticprivate