public enum SpatialRelation extends Enum<SpatialRelation>
| Enum Constant and Description |
|---|
COVERED
A is included in B.
|
DISJOINT
A and B have nothing in common.
|
OVERLAPS
A and B orverlap, but A has at least one point that is not in B.
|
| Modifier and Type | Method and Description |
|---|---|
static SpatialRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialRelation DISJOINT
public static final SpatialRelation OVERLAPS
public static final SpatialRelation COVERED
public static SpatialRelation[] values()
for (SpatialRelation c : SpatialRelation.values()) System.out.println(c);
public static SpatialRelation 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 © 2014. All Rights Reserved.