Uses of Interface
org.hibernate.type.descriptor.java.JavaType.CoercionContext
-
Packages that use JavaType.CoercionContext Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.envers.internal.entities.mapper.relation.lazy org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession
.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.loader.internal org.hibernate.metamodel.mapping.internal org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.query.internal org.hibernate.type.descriptor.java Integrates a range of types defined by the JDK with the type system of Hibernate. -
-
Uses of JavaType.CoercionContext in org.hibernate.engine.spi
Subinterfaces of JavaType.CoercionContext in org.hibernate.engine.spi Modifier and Type Interface Description interface
SessionImplementor
Defines the "internal contract" betweenSession
and other parts of Hibernate including implementors ofType
,EntityPersister
, andCollectionPersister
.interface
SharedSessionContractImplementor
Defines the internal contract shared betweenSession
andStatelessSession
as used by other parts of Hibernate, including implementors ofType
,EntityPersister
, andCollectionPersister
.Classes in org.hibernate.engine.spi that implement JavaType.CoercionContext Modifier and Type Class Description class
SessionDelegatorBaseImpl
A wrapper class that delegates all method invocations to a delegate instance ofSessionImplementor
.class
SharedSessionDelegatorBaseImpl
A wrapper class that delegates all method invocations to a delegate instance ofSharedSessionContractImplementor
. -
Uses of JavaType.CoercionContext in org.hibernate.envers.internal.entities.mapper.relation.lazy
Classes in org.hibernate.envers.internal.entities.mapper.relation.lazy that implement JavaType.CoercionContext Modifier and Type Class Description class
AbstractDelegateSessionImplementor
class
ToOneDelegateSessionImplementor
-
Uses of JavaType.CoercionContext in org.hibernate.event.spi
Subinterfaces of JavaType.CoercionContext in org.hibernate.event.spi Modifier and Type Interface Description interface
EventSource
-
Uses of JavaType.CoercionContext in org.hibernate.internal
Classes in org.hibernate.internal that implement JavaType.CoercionContext Modifier and Type Class Description class
AbstractSharedSessionContract
Base class for implementations ofSharedSessionContract
andSharedSessionContractImplementor
.class
SessionImpl
Concrete implementation of theSession
API.class
StatelessSessionImpl
Concrete implementation of theStatelessSession
API. -
Uses of JavaType.CoercionContext in org.hibernate.loader.internal
Classes in org.hibernate.loader.internal that implement JavaType.CoercionContext Modifier and Type Class Description class
IdentifierLoadAccessImpl<T>
Standard implementation of load-by-id -
Uses of JavaType.CoercionContext in org.hibernate.metamodel.mapping.internal
Classes in org.hibernate.metamodel.mapping.internal that implement JavaType.CoercionContext Modifier and Type Class Description class
SimpleNaturalIdMapping
Single-attribute NaturalIdMapping implementation -
Uses of JavaType.CoercionContext in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement JavaType.CoercionContext Modifier and Type Class Description class
ProcedureParameterBindingImpl<T>
Implementation of theProcedureParameterBinding
contract. -
Uses of JavaType.CoercionContext in org.hibernate.query.internal
Classes in org.hibernate.query.internal that implement JavaType.CoercionContext Modifier and Type Class Description class
QueryParameterBindingImpl<T>
The standard implementation ofQueryParameterBinding
. -
Uses of JavaType.CoercionContext in org.hibernate.type.descriptor.java
Methods in org.hibernate.type.descriptor.java with parameters of type JavaType.CoercionContext Modifier and Type Method Description <X> BigDecimal
BigDecimalJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
<X> BigInteger
BigIntegerJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
<X> Byte
ByteJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
<X> Double
DoubleJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
<X> Float
FloatJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
Integer
IntegerJavaType. coerce(Object value, JavaType.CoercionContext coercionContext)
default <X> T
JavaType. coerce(X value, JavaType.CoercionContext coercionContext)
Date
JdbcDateJavaType. coerce(Object value, JavaType.CoercionContext coercionContext)
Date
JdbcTimeJavaType. coerce(Object value, JavaType.CoercionContext coercionContext)
Date
JdbcTimestampJavaType. coerce(Object value, JavaType.CoercionContext coercionContext)
<X> Long
LongJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
<X> char[]
PrimitiveCharacterArrayJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
Short
ShortJavaType. coerce(Object value, JavaType.CoercionContext coercionContext)
<X> String
StringJavaType. coerce(X value, JavaType.CoercionContext coercionContext)
-