Package com.complexible.stardog.spatial
Enum Geosparql.SPATIAL_FUNCTIONS
- java.lang.Object
-
- java.lang.Enum<Geosparql.SPATIAL_FUNCTIONS>
-
- com.complexible.stardog.spatial.Geosparql.SPATIAL_FUNCTIONS
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Geosparql.SPATIAL_FUNCTIONS>
- Enclosing class:
- Geosparql
public static enum Geosparql.SPATIAL_FUNCTIONS extends java.lang.Enum<Geosparql.SPATIAL_FUNCTIONS>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract IRI
iri()
IRI
serviceIri()
static Geosparql.SPATIAL_FUNCTIONS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Geosparql.SPATIAL_FUNCTIONS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISTANCE
public static final Geosparql.SPATIAL_FUNCTIONS DISTANCE
-
WITHIN
public static final Geosparql.SPATIAL_FUNCTIONS WITHIN
-
NEARBY
public static final Geosparql.SPATIAL_FUNCTIONS NEARBY
-
RELATE
public static final Geosparql.SPATIAL_FUNCTIONS RELATE
-
AREA
public static final Geosparql.SPATIAL_FUNCTIONS AREA
-
-
Method Detail
-
values
public static Geosparql.SPATIAL_FUNCTIONS[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Geosparql.SPATIAL_FUNCTIONS c : Geosparql.SPATIAL_FUNCTIONS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Geosparql.SPATIAL_FUNCTIONS valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
iri
public abstract IRI iri()
-
serviceIri
public IRI serviceIri()
-
-