rdf4j-postgis  Version 0.1.0.0
BoundingBox Class Reference

Aggregate function to calculate a boundingbox of a set of geometries. More...

Inheritance diagram for BoundingBox:
Collaboration diagram for BoundingBox:

Public Member Functions

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

Package Functions

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

Static Private Attributes

static final long serialVersionUID = -6961038171918023822L
 

Detailed Description

Aggregate function to calculate a boundingbox of a set of geometries.

Constructor & Destructor Documentation

◆ BoundingBox() [1/2]

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

◆ BoundingBox() [2/2]

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

Member Function Documentation

◆ clone()

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

References BoundingBox.clone().

Referenced by BoundingBox.clone().

◆ equals()

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

References BoundingBox.equals().

Referenced by BoundingBox.equals().

◆ hashCode()

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