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

Uses of Interface org.hibernate.mapping.KeyValue (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


Uses of Interface
org.hibernate.mapping.KeyValue

Packages that use KeyValue
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
 

Uses of KeyValue in org.hibernate.mapping
 

Classes in org.hibernate.mapping that implement KeyValue
 class Any
          A Hibernate "any" type (ie.
 class Component
          The mapping for a component, composite element, composite identifier, etc.
 class DependantValue
          A value which is "typed" by reference to some other value (for example, a foreign key is typed by the referenced primary key).
 class ManyToOne
          A many-to-one association mapping
 class OneToOne
          A one-to-one association mapping
 class SimpleValue
          Any value that maps to columns.
 class ToOne
          A simple-point association (ie.
 

Methods in org.hibernate.mapping that return KeyValue
 KeyValue Table.getIdentifierValue()
           
 KeyValue Subclass.getIdentifier()
           
 KeyValue Subclass.getKey()
           
 KeyValue RootClass.getIdentifier()
           
 KeyValue RootClass.getKey()
           
abstract  KeyValue PersistentClass.getIdentifier()
           
abstract  KeyValue PersistentClass.getKey()
           
 KeyValue OneToOne.getIdentifier()
          Returns the identifier.
 KeyValue JoinedSubclass.getKey()
           
 KeyValue Join.getKey()
           
 KeyValue IdentifierCollection.getIdentifier()
           
 KeyValue Collection.getKey()
           
 

Methods in org.hibernate.mapping with parameters of type KeyValue
 void Table.setIdentifierValue(KeyValue idValue)
           
 void RootClass.setIdentifier(KeyValue identifier)
           
 void OneToOne.setIdentifier(KeyValue identifier)
          Sets the identifier.
 void JoinedSubclass.setKey(KeyValue key)
           
 void Join.setKey(KeyValue key)
           
 void IdentifierCollection.setIdentifier(KeyValue identifier)
           
 void Collection.setKey(KeyValue key)
           
 

Constructors in org.hibernate.mapping with parameters of type KeyValue
DependantValue(Table table, KeyValue prototype)