Package org.hibernate.spatial.criterion
Class HavingSridExpression
- java.lang.Object
-
- org.hibernate.spatial.criterion.HavingSridExpression
-
- All Implemented Interfaces:
Serializable
,Criterion
public class HavingSridExpression extends Object implements Criterion
ACriterion
constraining a geometry property to have a specified SRID.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HavingSridExpression(String propertyName, int srid)
Constructs an instance for the specified property and srid
-
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 fragmentString
toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Render the SQL fragment
-
-
-
Constructor Detail
-
HavingSridExpression
public HavingSridExpression(String propertyName, int srid)
Constructs an instance for the specified property and srid- Parameters:
propertyName
- The name of the property being constrainedsrid
- The srid
-
-
Method Detail
-
toSqlString
public String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
Description copied from interface:Criterion
Render the SQL fragment- Specified by:
toSqlString
in interfaceCriterion
- Parameters:
criteria
- The local criteriacriteriaQuery
- The overal 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:Criterion
Return typed values for all parameters in the rendered SQL fragment- Specified by:
getTypedValues
in interfaceCriterion
- Parameters:
criteria
- The local criteriacriteriaQuery
- The overal criteria query- Returns:
- The types values (for binding)
- Throws:
HibernateException
- Problem determining types.
-
-