Package org.hibernate.spatial
Enum Class CommonSpatialFunction.Type
- All Implemented Interfaces:
Serializable
,Comparable<CommonSpatialFunction.Type>
,Constable
- Enclosing class:
- CommonSpatialFunction
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGeometry, Geometry -> Boolean (or String for st_relate)Geometry [, OBJECT]* -> GeometryString or Byte Array -> GeometryGeometry -> String or Byte[]Geometry[, Object]* -> Scalar typeGeometry, Geometry, [Geometry]* -> GeometryGeometry -> Boolean -
Method Summary
Modifier and TypeMethodDescriptionstatic CommonSpatialFunction.Type
Returns the enum constant of this class with the specified name.static CommonSpatialFunction.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GEOMETRY_OUTPUT
Geometry -> String or Byte[] -
GEOMETRY_INPUT
String or Byte Array -> Geometry -
CONSTRUCTION
Geometry [, OBJECT]* -> Geometry -
OVERLAY
Geometry, Geometry, [Geometry]* -> Geometry -
ANALYSIS
Geometry, Geometry -> Boolean (or String for st_relate) -
VALIDATION
Geometry -> Boolean -
INFORMATION
Geometry[, Object]* -> Scalar type
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-