Package org.hibernate.spatial.dialect
Class SpatialFunctionsRegistry
- java.lang.Object
-
- org.hibernate.spatial.dialect.SpatialFunctionsRegistry
-
- All Implemented Interfaces:
Serializable
,Iterable<Map.Entry<String,org.hibernate.query.sqm.function.SqmFunctionDescriptor>>
public abstract class SpatialFunctionsRegistry extends Object implements Iterable<Map.Entry<String,org.hibernate.query.sqm.function.SqmFunctionDescriptor>>, Serializable
Registers all available spatial functions for aDialect
Created by Karel Maesen, Geovise BVBA on 29/10/16.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,org.hibernate.query.sqm.function.SqmFunctionDescriptor>
functionMap
-
Constructor Summary
Constructors Constructor Description SpatialFunctionsRegistry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.hibernate.query.sqm.function.SqmFunctionDescriptor
get(String functionName)
Iterator<Map.Entry<String,org.hibernate.query.sqm.function.SqmFunctionDescriptor>>
iterator()
void
put(String name, org.hibernate.query.sqm.function.SqmFunctionDescriptor function)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
put
public void put(String name, org.hibernate.query.sqm.function.SqmFunctionDescriptor function)
-
iterator
public Iterator<Map.Entry<String,org.hibernate.query.sqm.function.SqmFunctionDescriptor>> iterator()
-
get
public org.hibernate.query.sqm.function.SqmFunctionDescriptor get(String functionName)
-
-