站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

Uses of Interface net.sf.hibernate.id.Configurable (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


Uses of Interface
net.sf.hibernate.id.Configurable

Packages that use Configurable
net.sf.hibernate.id   
 

Uses of Configurable in net.sf.hibernate.id
 

Classes in net.sf.hibernate.id that implement Configurable
 class ForeignGenerator
          foreign

An Identifier generator that uses the value of the id property of an associated object

One mapping parameter is required: property.
 class IncrementGenerator
          increment

An IdentifierGenerator that returns a long, constructed by counting from the maximum primary key value at startup.
 class SequenceGenerator
          sequence

Generates long values using an oracle-style sequence.
 class SequenceHiLoGenerator
          seqhilo

An IdentifierGenerator that combines a hi/lo algorithm with an underlying oracle-style sequence that generates hi values.
 class TableGenerator
          An IdentifierGenerator that uses a database table to store the last generated value.
 class TableHiLoGenerator
          hilo

An IdentifierGenerator that returns a Long, constructed using a hi/lo algorithm.
 class UUIDHexGenerator
          uuid.hex

A UUIDGenerator that returns a string of length 32, This string will consist of only hex digits.
 class UUIDStringGenerator
          uuid.string

A UUIDGenerator that returns a string of length 16, This string will NOT consist of only alphanumeric characters.