public enum SpatialOperator extends Enum<SpatialOperator>
Distance(Geometry g1, Geometry g2), which returns the
minimum distance between two geometries.| Enum Constant and Description |
|---|
BBOX |
BEYOND |
CONTAINS |
CROSSES |
DISJOINT |
DWITHIN |
EQUALS |
INTERSECTS |
OVERLAPS |
TOUCHES |
WITHIN |
| Modifier and Type | Method and Description |
|---|---|
static SpatialOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialOperator BBOX
public static final SpatialOperator CONTAINS
public static final SpatialOperator CROSSES
public static final SpatialOperator DISJOINT
public static final SpatialOperator INTERSECTS
public static final SpatialOperator EQUALS
public static final SpatialOperator OVERLAPS
public static final SpatialOperator TOUCHES
public static final SpatialOperator WITHIN
public static final SpatialOperator BEYOND
public static final SpatialOperator DWITHIN
public static SpatialOperator[] values()
for (SpatialOperator c : SpatialOperator.values()) System.out.println(c);
public static SpatialOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 Open Geospatial Consortium. All rights reserved.