public enum SpatialFunction extends Enum<SpatialFunction>
Spatial functions that users generally expect in a database. <p> <p>The javadoc contains references to these specifications.</p> <ul> <li>OpenGIS Simple Features Specification for SQL, rev. 1.1 (OGC 99-049)</li> </ul>
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
<p>
<p>The semantics are those of Postgis function ST_Dwithin (geom1, geom2, distance) : boolean.
|
envelope
The envelope function, cfr.
|
equals
The equals function, cfr.
|
extent
the extents 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
<p>
<p>The semantics are those of the Postgis function ST_Transform(geometry, srid) : geometry.
|
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
The dimension function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction geometrytype
The geometryType function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction srid
The SRID function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction envelope
The envelope function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction astext
The asText function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction asbinary
The asBinary function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction isempty
The isEmpty function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction issimple
The isSimple function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction boundary
The boundery function, cfr. OGC 99-049, s2.1.1.1
public static final SpatialFunction equals
The equals function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction disjoint
The disjoint function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction intersects
The intersects function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction touches
The touches function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction crosses
The crosses function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction within
The within function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction contains
The contains function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction overlaps
The overlaps function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction relate
The relate function, cfr. OGC 99-049, s2.1.1.2
public static final SpatialFunction distance
The distance function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction buffer
The buffer function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction convexhull
The convexHull function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction intersection
The intersection function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction geomunion
The union function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction difference
The difference function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction symdifference
The symDifference function, cfr. OGC 99-049, s2.1.1.3
public static final SpatialFunction dwithin
the distance within function <p> <p>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).</p>
public static final SpatialFunction transform
the transform function <p> <p>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
the extents function
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-2018 Red Hat, Inc. All Rights Reserved.