rdf4j-postgis  Version 0.1.0.0
MinX Class Reference

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

Inheritance diagram for MinX:
Collaboration diagram for MinX:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = 6043992669883130664L
 

Detailed Description

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

Constructor & Destructor Documentation

◆ MinX() [1/2]

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

◆ MinX() [2/2]

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

Member Function Documentation

◆ clone()

MinX clone ( )
43  {
44  return (MinX) super.clone();
45  }
MinX(ValueExpr arg)
Definition: aggregate/MinX.java:19

References MinX.clone().

Referenced by MinX.clone().

◆ equals()

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

References MinX.equals().

Referenced by MinX.equals().

◆ hashCode()

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