public static enum Query.SpatialRelationshipType extends java.lang.Enum<Query.SpatialRelationshipType>
Enum Constant and Description |
---|
NOT_SET |
SPATIAL_REL_CONTAINS |
SPATIAL_REL_CROSSES |
SPATIAL_REL_ENVELOPEINTERSECTS |
SPATIAL_REL_INDEXINTERSECTS |
SPATIAL_REL_INTERSECTS |
SPATIAL_REL_OVERLAPS |
SPATIAL_REL_RELATION |
SPATIAL_REL_SPATIAL_REL_WITHIN |
SPATIAL_REL_TOUCHES |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static Query.SpatialRelationshipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Query.SpatialRelationshipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.SpatialRelationshipType NOT_SET
public static final Query.SpatialRelationshipType SPATIAL_REL_CONTAINS
public static final Query.SpatialRelationshipType SPATIAL_REL_CROSSES
public static final Query.SpatialRelationshipType SPATIAL_REL_ENVELOPEINTERSECTS
public static final Query.SpatialRelationshipType SPATIAL_REL_INDEXINTERSECTS
public static final Query.SpatialRelationshipType SPATIAL_REL_INTERSECTS
public static final Query.SpatialRelationshipType SPATIAL_REL_OVERLAPS
public static final Query.SpatialRelationshipType SPATIAL_REL_RELATION
public static final Query.SpatialRelationshipType SPATIAL_REL_TOUCHES
public static final Query.SpatialRelationshipType SPATIAL_REL_SPATIAL_REL_WITHIN
public static Query.SpatialRelationshipType[] values()
for (Query.SpatialRelationshipType c : Query.SpatialRelationshipType.values()) System.out.println(c);
public static Query.SpatialRelationshipType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()