Package org.hibernate.id.enhanced
Class OptimizerFactory
java.lang.Object
org.hibernate.id.enhanced.OptimizerFactory
Factory for
Optimizer instances.- Author:
- Steve Ebersole
-
Method Summary
Modifier and TypeMethodDescriptionstatic OptimizerbuildOptimizer(OptimizerDescriptor type, Class<?> returnClass, int incrementSize, long explicitInitialValue) Builds an optimizerstatic StringdetermineImplicitOptimizerName(int incrementSize, Properties configSettings) Determine the optimizer to use when there was not one explicitly specified.static booleanisPooledOptimizer(String optimizerName) Deprecated.No longer used
-
Method Details
-
isPooledOptimizer
Deprecated.No longer usedDoes the given optimizer name represent a pooled strategy?- Parameters:
optimizerName- The name of the optimizer- Returns:
trueindicates the optimizer is a pooled strategy.
-
buildOptimizer
public static Optimizer buildOptimizer(OptimizerDescriptor type, Class<?> returnClass, int incrementSize, long explicitInitialValue) Builds an optimizer- Parameters:
type- The optimizer type, either a shorthand name or theOptimizerclass name.returnClass- The generated value java typeincrementSize- The increment size.explicitInitialValue- The user supplied initial-value (-1 indicates the user did not specify).- Returns:
- The built optimizer
-
determineImplicitOptimizerName
Determine the optimizer to use when there was not one explicitly specified.
-