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 KeyValue
ClassPropertyHolder. getIdentifier()
KeyValue
CollectionPropertyHolder. getIdentifier()
KeyValue
ComponentPropertyHolder. getIdentifier()
KeyValue
PropertyHolder. 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 IdentifierValue
UnsavedValueFactory. 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> VersionValue
UnsavedValueFactory. getUnsavedVersionValue(KeyValue bootVersionMapping, VersionJavaType<T> jtd, Getter getter, Supplier<?> templateInstanceAccess)
Return theUnsavedValueStrategy
for 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 class
Any
A mapping model object representing a polymorphic association to one of several tables.static class
Any.KeyValue
static class
Any.MetaValue
class
BasicValue
class
Component
A mapping model object that represents an embeddable class.class
DependantBasicValue
class
DependantValue
A 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).class
ManyToOne
A mapping model object representing a many-to-one association.class
OneToOne
A mapping model object representing a many-to-one association.class
SimpleValue
A mapping model object that represents any value that maps to columns.class
ToOne
A 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 KeyValue
IdentifierCollection. getIdentifier()
KeyValue
OneToOne. getIdentifier()
Returns the identifier.abstract KeyValue
PersistentClass. getIdentifier()
KeyValue
RootClass. getIdentifier()
KeyValue
Subclass. getIdentifier()
KeyValue
Collection. getKey()
KeyValue
Join. getKey()
KeyValue
JoinedSubclass. getKey()
abstract KeyValue
PersistentClass. getKey()
KeyValue
RootClass. getKey()
KeyValue
Subclass. getKey()
KeyValue
DependantValue. 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 void
IdentifierCollection. setIdentifier(KeyValue identifier)
void
OneToOne. setIdentifier(KeyValue identifier)
Sets the identifier.void
RootClass. setIdentifier(KeyValue identifier)
void
Collection. setKey(KeyValue key)
void
Join. setKey(KeyValue key)
void
JoinedSubclass. setKey(KeyValue key)
Constructors in org.hibernate.mapping with parameters of type KeyValue Constructor Description DependantValue(MetadataBuildingContext buildingContext, Table table, KeyValue prototype)
-