Uses of Interface
org.hibernate.mapping.KeyValue
-
Packages that use KeyValue Package Description org.hibernate.boot.model.internal org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model. -
-
Uses of KeyValue in org.hibernate.boot.model.internal
Methods in org.hibernate.boot.model.internal that return KeyValue Modifier and Type Method Description KeyValueClassPropertyHolder. getIdentifier()KeyValueCollectionPropertyHolder. getIdentifier()KeyValueComponentPropertyHolder. getIdentifier()KeyValuePropertyHolder. getIdentifier() -
Uses of KeyValue in org.hibernate.engine.internal
Methods in org.hibernate.engine.internal with parameters of type KeyValue Modifier and Type Method Description static IdentifierValueUnsavedValueFactory. getUnsavedIdentifierValue(KeyValue bootIdMapping, JavaType<?> idJtd, Getter getter, Supplier<?> templateInstanceAccess)Return the UnsavedValueStrategy for determining whether an entity instance is unsaved based on the identifier.static <T> VersionValueUnsavedValueFactory. getUnsavedVersionValue(KeyValue bootVersionMapping, VersionJavaType<T> jtd, Getter getter, Supplier<?> templateInstanceAccess)Return theUnsavedValueStrategyfor determining whether an entity instance is unsaved based on the version. -
Uses of KeyValue in org.hibernate.mapping
Classes in org.hibernate.mapping that implement KeyValue Modifier and Type Class Description classAnyA mapping model object representing a polymorphic association to one of several tables.static classAny.KeyValuestatic classAny.MetaValueclassBasicValueclassComponentA mapping model object that represents an embeddable class.classDependantBasicValueclassDependantValueA mapping model object representing a value which is "typed" by reference to some other value (for example, a foreign key is typed by the referenced primary key).classManyToOneA mapping model object representing a many-to-one association.classOneToOneA mapping model object representing a many-to-one association.classSimpleValueA mapping model object that represents any value that maps to columns.classToOneA mapping model object representing an association where the target side has cardinality one.Methods in org.hibernate.mapping that return KeyValue Modifier and Type Method Description KeyValueIdentifierCollection. getIdentifier()KeyValueOneToOne. getIdentifier()Returns the identifier.abstract KeyValuePersistentClass. getIdentifier()KeyValueRootClass. getIdentifier()KeyValueSubclass. getIdentifier()KeyValueCollection. getKey()KeyValueJoin. getKey()KeyValueJoinedSubclass. getKey()abstract KeyValuePersistentClass. getKey()KeyValueRootClass. getKey()KeyValueSubclass. getKey()KeyValueDependantValue. getWrappedValue()Methods in org.hibernate.mapping that return types with arguments of type KeyValue Modifier and Type Method Description abstract List<KeyValue>PersistentClass. getKeyClosure()List<KeyValue>RootClass. getKeyClosure()List<KeyValue>Subclass. getKeyClosure()Methods in org.hibernate.mapping with parameters of type KeyValue Modifier and Type Method Description voidIdentifierCollection. setIdentifier(KeyValue identifier)voidOneToOne. setIdentifier(KeyValue identifier)Sets the identifier.voidRootClass. setIdentifier(KeyValue identifier)voidCollection. setKey(KeyValue key)voidJoin. setKey(KeyValue key)voidJoinedSubclass. setKey(KeyValue key)Constructors in org.hibernate.mapping with parameters of type KeyValue Constructor Description DependantValue(MetadataBuildingContext buildingContext, Table table, KeyValue prototype)
-