Package org.hibernate.spatial.criterion
Class DWithinExpression
- java.lang.Object
-
- org.hibernate.spatial.criterion.DWithinExpression
-
- All Implemented Interfaces:
java.io.Serializable,Criterion
public class DWithinExpression extends java.lang.Object implements Criterion
ACriterionconstraining a geometry property to be within a specified distance of a search geometry.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DWithinExpression(java.lang.String propertyName, org.locationtech.jts.geom.Geometry geometry, double distance)Constructs an instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypedValue[]getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)Return typed values for all parameters in the rendered SQL fragmentjava.lang.StringtoSqlString(Criteria criteria, CriteriaQuery criteriaQuery)Render the SQL fragment
-
-
-
Constructor Detail
-
DWithinExpression
public DWithinExpression(java.lang.String propertyName, org.locationtech.jts.geom.Geometry geometry, double distance)Constructs an instance- Parameters:
propertyName- The name of the property being constrainedgeometry- The search geometrydistance- The search distance (in units of the spatial reference system of the search geometry)
-
-
Method Detail
-
toSqlString
public java.lang.String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
Description copied from interface:CriterionRender the SQL fragment- Specified by:
toSqlStringin interfaceCriterion- Parameters:
criteria- The local criteriacriteriaQuery- The overall criteria query- Returns:
- The generated SQL fragment
- Throws:
HibernateException- Problem during rendering.
-
getTypedValues
public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
Description copied from interface:CriterionReturn typed values for all parameters in the rendered SQL fragment- Specified by:
getTypedValuesin interfaceCriterion- Parameters:
criteria- The local criteriacriteriaQuery- The overall criteria query- Returns:
- The types values (for binding)
- Throws:
HibernateException- Problem determining types.
-
-