Package com.gpudb.protocol
Class FilterByGeometryRequest.Operation
- java.lang.Object
-
- com.gpudb.protocol.FilterByGeometryRequest.Operation
-
- Enclosing class:
- FilterByGeometryRequest
public static final class FilterByGeometryRequest.Operation extends Object
A set of string constants for theFilterByGeometryRequestparameteroperation.The geometric filtering operation to perform
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONTAINSMatches records that contain the given WKT ininputWkt, i.e. the given WKT is within the bounds of a record's geometry.static StringCROSSESMatches records that cross the given WKT.static StringDISJOINTMatches records that are disjoint from the given WKT.static StringEQUALSMatches records that are the same as the given WKT.static StringINTERSECTSMatches records that intersect the given WKT.static StringOVERLAPSMatches records that overlap the given WKT.static StringTOUCHESMatches records that touch the given WKT.static StringWITHINMatches records that are within the given WKT.
-
-
-
Field Detail
-
CONTAINS
public static final String CONTAINS
Matches records that contain the given WKT ininputWkt, i.e. the given WKT is within the bounds of a record's geometry.- See Also:
- Constant Field Values
-
CROSSES
public static final String CROSSES
Matches records that cross the given WKT.- See Also:
- Constant Field Values
-
DISJOINT
public static final String DISJOINT
Matches records that are disjoint from the given WKT.- See Also:
- Constant Field Values
-
EQUALS
public static final String EQUALS
Matches records that are the same as the given WKT.- See Also:
- Constant Field Values
-
INTERSECTS
public static final String INTERSECTS
Matches records that intersect the given WKT.- See Also:
- Constant Field Values
-
OVERLAPS
public static final String OVERLAPS
Matches records that overlap the given WKT.- See Also:
- Constant Field Values
-
TOUCHES
public static final String TOUCHES
Matches records that touch the given WKT.- See Also:
- Constant Field Values
-
WITHIN
public static final String WITHIN
Matches records that are within the given WKT.- See Also:
- Constant Field Values
-
-