public enum SpatialRelationship extends Enum<SpatialRelationship>
| Enum Constant and Description |
|---|
CONTAINS |
CROSSES |
DISJOINT |
EQUALS |
INTERSECTS |
OVERLAPS |
TOUCHES |
WITHIN |
| Modifier and Type | Method and Description |
|---|---|
static SpatialRelationship |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialRelationship[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialRelationship CONTAINS
public static final SpatialRelationship CROSSES
public static final SpatialRelationship DISJOINT
public static final SpatialRelationship INTERSECTS
public static final SpatialRelationship EQUALS
public static final SpatialRelationship OVERLAPS
public static final SpatialRelationship TOUCHES
public static final SpatialRelationship WITHIN
public static SpatialRelationship[] values()
for (SpatialRelationship c : SpatialRelationship.values()) System.out.println(c);
public static SpatialRelationship 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 © 2016 Open Geospatial Consortium. All rights reserved.