Class OracleSpatialProjections
- java.lang.Object
-
- org.hibernate.spatial.dialect.oracle.criterion.OracleSpatialProjections
-
public final class OracleSpatialProjections extends java.lang.ObjectFactory class for SpationProjection functions *
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OracleSpatialProjectioncentroid(java.lang.String propertyName)Applies a "CENTROID" projection to the named property.static OracleSpatialProjectionconcatLines(java.lang.String propertyName)Applies a "CONCAT_LINES" projection to the named property.static OracleSpatialProjectionconcatLrs(java.lang.String propertyName)Applies a "CONCAT_LRS" projection to the named property.static OracleSpatialProjectionprojection(int projection, java.lang.String propertyName)Applies the specifiedOracleSpatialProjectionto the named property.
-
-
-
Method Detail
-
concatLrs
public static OracleSpatialProjection concatLrs(java.lang.String propertyName)
Applies a "CONCAT_LRS" projection to the named property.- Parameters:
propertyName- The name of the geometry property- Returns:
- OracleSpatialProjection
- See Also:
OracleSpatialProjection
-
centroid
public static OracleSpatialProjection centroid(java.lang.String propertyName)
Applies a "CENTROID" projection to the named property.- Parameters:
propertyName- The name of the geometry property- Returns:
- OracleSpatialProjection
- See Also:
OracleSpatialProjection
-
concatLines
public static OracleSpatialProjection concatLines(java.lang.String propertyName)
Applies a "CONCAT_LINES" projection to the named property.- Parameters:
propertyName- The name of the geometry property- Returns:
- OracleSpatialProjection
- See Also:
OracleSpatialProjection
-
projection
public static OracleSpatialProjection projection(int projection, java.lang.String propertyName)
Applies the specifiedOracleSpatialProjectionto the named property.- Parameters:
projection- The projection functionpropertyName- The name of the geometry property- Returns:
- OracleSpatialProjection
- See Also:
OracleSpatialProjection
-
-