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

Uses of Class net.sf.hibernate.mapping.Collection (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


Uses of Class
net.sf.hibernate.mapping.Collection

Packages that use Collection
net.sf.hibernate.cfg   
net.sf.hibernate.collection   
net.sf.hibernate.mapping   
net.sf.hibernate.persister   
 

Uses of Collection in net.sf.hibernate.cfg
 

Methods in net.sf.hibernate.cfg that return Collection
 Collection Mappings.getCollection(String role)
           
 Collection Configuration.getCollectionMapping(String role)
          Get the mapping for a particular collection role
 

Methods in net.sf.hibernate.cfg with parameters of type Collection
 void Mappings.addCollection(Collection collection)
           
 

Uses of Collection in net.sf.hibernate.collection
 

Constructors in net.sf.hibernate.collection with parameters of type Collection
OneToManyPersister(Collection collection, Configuration cfg, SessionFactoryImplementor factory)
           
BasicCollectionPersister(Collection collection, Configuration cfg, SessionFactoryImplementor factory)
           
AbstractCollectionPersister(Collection collection, Configuration cfg, SessionFactoryImplementor factory)
           
 

Uses of Collection in net.sf.hibernate.mapping
 

Subclasses of Collection in net.sf.hibernate.mapping
 class Array
          An array mapping has a primary key consisting of the key columns + index column.
 class Bag
          A bag permits duplicates, so it has no primary key
 class IdentifierBag
          An IdentifierBag has a primary key consisting of just the identifier column
 class IdentifierCollection
          A collection with a synthetic "identifier" column
 class IndexedCollection
          Indexed collections include Lists, Maps, arrays and primitive arrays.
 class List
          A list mapping has a primary key consisting of the key columns + index column.
 class Map
          A map has a primary key consisting of the key columns + index columns.
 class PrimitiveArray
          A primitive array has a primary key consisting of the key columns + index column.
 class Set
          A set with no nullable element columns.
 

Uses of Collection in net.sf.hibernate.persister
 

Methods in net.sf.hibernate.persister with parameters of type Collection
static CollectionPersister PersisterFactory.createCollectionPersister(Configuration cfg, Collection model, SessionFactoryImplementor factory)