Package org.hibernate.spatial
Interface SpatialRelation
Deprecated.
Will be removed in 6
Enumerates the supported spatial relations.
Most of these relations are defined in "OpenGIS Simple Features Specification for SQL, rev. 1.1 (OGC 99-049), section 2.1.13.3. "
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Deprecated.The first geometry spatially contains the secondstatic final int
Deprecated.The geometries crossstatic final int
Deprecated.The geometries are spatially dijointstatic final int
Deprecated.The geometries are spatially equal to each other.static final int
Deprecated.The bounding box of the first geometry intersects the bounding box of the secondstatic final int
Deprecated.The first geometry intersects the secondstatic final int
Deprecated.The geometries spatially overlapstatic final int
Deprecated.The geometries touchstatic final int
Deprecated.The first geometry is spatially within the second
-
Field Details
-
EQUALS
static final int EQUALSDeprecated.The geometries are spatially equal to each other.- See Also:
-
DISJOINT
static final int DISJOINTDeprecated.The geometries are spatially dijoint- See Also:
-
TOUCHES
static final int TOUCHESDeprecated.The geometries touch- See Also:
-
CROSSES
static final int CROSSESDeprecated.The geometries cross- See Also:
-
WITHIN
static final int WITHINDeprecated.The first geometry is spatially within the second- See Also:
-
OVERLAPS
static final int OVERLAPSDeprecated.The geometries spatially overlap- See Also:
-
CONTAINS
static final int CONTAINSDeprecated.The first geometry spatially contains the second- See Also:
-
INTERSECTS
static final int INTERSECTSDeprecated.The first geometry intersects the second- See Also:
-
FILTER
static final int FILTERDeprecated.The bounding box of the first geometry intersects the bounding box of the secondThis relation is not defined in OGC 99-049, it corresponds to the Postgis '&&' operator.
- See Also:
-