Class SpatialFunctionContributor
java.lang.Object
org.hibernate.spatial.contributor.SpatialFunctionContributor
- All Implemented Interfaces:
FunctionContributor
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
contributeFunctions
(FunctionContributions functionContributions) Contribute functionsint
ordinal()
Determines order in which the contributions will be applied (lowest ordinal first).
-
Constructor Details
-
SpatialFunctionContributor
public SpatialFunctionContributor()
-
-
Method Details
-
contributeFunctions
Description copied from interface:FunctionContributor
Contribute functions- Specified by:
contributeFunctions
in interfaceFunctionContributor
- Parameters:
functionContributions
- The target for the contributions
-
ordinal
public int ordinal()Description copied from interface:FunctionContributor
Determines order in which the contributions will be applied (lowest ordinal first).The range 0-500 is reserved for Hibernate, range 500-1000 for libraries and 1000-Integer.MAX_VALUE for user-defined FunctionContributors.
Contributions from higher precedence contributors (higher numbers) effectively override contributions from lower precedence. E.g. if a contributor with precedence 1000 contributes a function named
"max"
, that will override Hibernate's standard function of that name.- Specified by:
ordinal
in interfaceFunctionContributor
- Returns:
- the ordinal for this FunctionContributor
-