rdf4j-postgis  Version 0.1.0.0
MaxY Class Reference

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

Inheritance diagram for MaxY:
Collaboration diagram for MaxY:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = 6796006337635345026L
 

Detailed Description

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

Constructor & Destructor Documentation

◆ MaxY() [1/2]

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

◆ MaxY() [2/2]

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

Member Function Documentation

◆ clone()

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

References MaxY.clone().

Referenced by MaxY.clone().

◆ equals()

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

References MaxY.equals().

Referenced by MaxY.equals().

◆ hashCode()

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