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

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


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

Packages that use SimpleValue
net.sf.hibernate.mapping   
 

Uses of SimpleValue in net.sf.hibernate.mapping
 

Subclasses of SimpleValue in net.sf.hibernate.mapping
 class Any
          A Hibernate "any" type (ie.
 class Component
          The mapping for a component, composite element, composite identifier, etc.
 class ManyToOne
          A many-to-one association mapping
 class OneToOne
          A one-to-one association mapping
 class ToOne
          A simple-point association (ie.
 

Methods in net.sf.hibernate.mapping that return SimpleValue
 SimpleValue Subclass.getIdentifier()
           
 SimpleValue Subclass.getKey()
           
 SimpleValue RootClass.getIdentifier()
           
 SimpleValue RootClass.getKey()
           
abstract  SimpleValue PersistentClass.getIdentifier()
           
abstract  SimpleValue PersistentClass.getKey()
           
 SimpleValue IndexedCollection.getIndex()
           
 SimpleValue IdentifierCollection.getIdentifier()
           
 SimpleValue Collection.getKey()
           
 

Methods in net.sf.hibernate.mapping with parameters of type SimpleValue
 void Table.setIdentifierValue(SimpleValue idValue)
           
 void Subclass.setKey(SimpleValue key)
           
 void RootClass.setDiscriminator(SimpleValue discriminator)
           
 void RootClass.setIdentifier(SimpleValue identifier)
           
 void OneToOne.setIdentifier(SimpleValue identifier)
          Sets the identifier.
 void IndexedCollection.setIndex(SimpleValue index)
           
 void IdentifierCollection.setIdentifier(SimpleValue identifier)
           
 void Collection.setKey(SimpleValue key)
          Sets the key.
 

Constructors in net.sf.hibernate.mapping with parameters of type SimpleValue
OneToOne(Table table, SimpleValue identifier)