public enum SpatialFunction extends Enum<SpatialFunction>
The javadoc contains references to these specifications.
Enum Constant and Description |
---|
asbinary
The asBinary function, cfr.
|
astext
The asText function, cfr.
|
boundary
The boundery function, cfr.
|
buffer
The buffer function, cfr.
|
contains
The contains function, cfr.
|
convexhull
The convexHull function, cfr.
|
crosses
The crosses function, cfr.
|
difference
The difference function, cfr.
|
dimension
The dimension function, cfr.
|
disjoint
The disjoint function, cfr.
|
distance
The distance function, cfr.
|
dwithin
the distance within function
|
envelope
The envelope function, cfr.
|
equals
The equals function, cfr.
|
extent
the extents function
|
filter
The filter function
|
geometrytype
The geometryType function, cfr.
|
geomunion
The union function, cfr.
|
intersection
The intersection function, cfr.
|
intersects
The intersects function, cfr.
|
isempty
The isEmpty function, cfr.
|
issimple
The isSimple function, cfr.
|
overlaps
The overlaps function, cfr.
|
relate
The relate function, cfr.
|
srid
The SRID function, cfr.
|
symdifference
The symDifference function, cfr.
|
touches
The touches function, cfr.
|
transform
the transform function
|
within
The within function, cfr.
|
Modifier and Type | Method and Description |
---|---|
static SpatialFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialFunction dimension
public static final SpatialFunction geometrytype
public static final SpatialFunction srid
public static final SpatialFunction envelope
public static final SpatialFunction astext
public static final SpatialFunction asbinary
public static final SpatialFunction isempty
public static final SpatialFunction issimple
public static final SpatialFunction boundary
public static final SpatialFunction equals
public static final SpatialFunction disjoint
public static final SpatialFunction intersects
public static final SpatialFunction touches
public static final SpatialFunction crosses
public static final SpatialFunction within
public static final SpatialFunction contains
public static final SpatialFunction overlaps
public static final SpatialFunction relate
public static final SpatialFunction distance
public static final SpatialFunction buffer
public static final SpatialFunction convexhull
public static final SpatialFunction intersection
public static final SpatialFunction geomunion
public static final SpatialFunction difference
public static final SpatialFunction symdifference
public static final SpatialFunction dwithin
The semantics are those of Postgis function ST_Dwithin (geom1, geom2, distance) : boolean. It returns true if geom1 and geom2 are within the specified distance of one another (in units of the spatial reference system).
public static final SpatialFunction transform
The semantics are those of the Postgis function ST_Transform(geometry, srid) : geometry. It returns new geometry with its coordinates transformed to the spatial reference system referenced by the srid parameter.
public static final SpatialFunction extent
public static final SpatialFunction filter
Corresponds to the Oracle Spatial's "SDO_FILTER" function, or the "&&" operator of PostGIS.
public static SpatialFunction[] values()
for (SpatialFunction c : SpatialFunction.values()) System.out.println(c);
public static SpatialFunction 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 © 2001-2022 Red Hat, Inc. All Rights Reserved.