Java org.hibernate.id.enhanced TableGenerator fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.id.enhanced TableGenerator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.id.enhanced TableGenerator.

The text is from its open source code.

Subclass

org.hibernate.id.enhanced.TableGenerator has subclasses.
Click this link to see all its subclasses.

Field

StringTABLE_PARAM
Configures the name of the table to use.
StringVALUE_COLUMN_PARAM
The name of column which holds the sequence value.
StringSEGMENT_COLUMN_PARAM
The name of the column which holds the segment key.
StringSEGMENT_VALUE_PARAM
The value indicating which segment is used by this generator, as indicated by the actual value stored in the column indicated by #SEGMENT_COLUMN_PARAM .
StringINITIAL_PARAM
Indicates the initial value to use.
StringINCREMENT_PARAM
Indicates the increment size to use.
StringOPT_PARAM
Indicates the optimizer to use, either naming a Optimizer implementation class or by naming a StandardOptimizerDescriptor by name

Method

voidconfigure(Type type, Properties params, ServiceRegistry serviceRegistry)
intgetInitialValue()
The initial value to use when we find no previous state in the generator table corresponding to our sequence.