public enum RelationshipMask extends Enum<RelationshipMask>
Enumerates the types of spatial relationship masks supported by Oracle Spatial.
| Enum Constant and Description |
|---|
ANYINTERACT
The "anyinteract" relationship
|
CONTAINS
The "contains" relationship
|
COVEREDBY
The "coveredby" relationship
|
COVERS
The "covers" relationship
|
EQUAL
The "equal" relationship
|
INSIDE
The "inside" relationship
|
ON
The "on" relationship
|
OVERLAPBYDISJOINT
The "overlapbydisjoint" relationship
|
OVERLAPBYINTERSECT
The "overlapbyintersect" relationship
|
TOUCH
The "touch" relationship
|
| Modifier and Type | Method and Description |
|---|---|
static String |
booleanCombination(RelationshipMask[] masks)
Combines the passed "
RelationshipMasks |
static RelationshipMask |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationshipMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationshipMask TOUCH
The "touch" relationship
public static final RelationshipMask OVERLAPBYDISJOINT
The "overlapbydisjoint" relationship
public static final RelationshipMask OVERLAPBYINTERSECT
The "overlapbyintersect" relationship
public static final RelationshipMask EQUAL
The "equal" relationship
public static final RelationshipMask INSIDE
The "inside" relationship
public static final RelationshipMask COVEREDBY
The "coveredby" relationship
public static final RelationshipMask CONTAINS
The "contains" relationship
public static final RelationshipMask COVERS
The "covers" relationship
public static final RelationshipMask ANYINTERACT
The "anyinteract" relationship
public static final RelationshipMask ON
The "on" relationship
public static RelationshipMask[] values()
for (RelationshipMask c : RelationshipMask.values()) System.out.println(c);
public static RelationshipMask 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 nullpublic static String booleanCombination(RelationshipMask[] masks)
Combines the passed "RelationshipMasks
masks - The array of masks to combineString representing the combined relationship maskCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.