Package org.hibernate.spatial.dialect
Class SpatialFunctionsRegistry
- java.lang.Object
-
- org.hibernate.spatial.dialect.SpatialFunctionsRegistry
-
- All Implemented Interfaces:
Serializable
,Iterable<Map.Entry<String,SqmFunctionDescriptor>>
public abstract class SpatialFunctionsRegistry extends Object implements Iterable<Map.Entry<String,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,SqmFunctionDescriptor>
functionMap
-
Constructor Summary
Constructors Constructor Description SpatialFunctionsRegistry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqmFunctionDescriptor
get(String functionName)
Iterator<Map.Entry<String,SqmFunctionDescriptor>>
iterator()
void
put(String name, 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
-
-
-
-
Field Detail
-
functionMap
protected final Map<String,SqmFunctionDescriptor> functionMap
-
-
Method Detail
-
put
public void put(String name, SqmFunctionDescriptor function)
-
iterator
public Iterator<Map.Entry<String,SqmFunctionDescriptor>> iterator()
- Specified by:
iterator
in interfaceIterable<Map.Entry<String,SqmFunctionDescriptor>>
-
get
public SqmFunctionDescriptor get(String functionName)
-
-