Uses of Interface
org.hibernate.metamodel.spi.EmbeddableInstantiator
-
Packages that use EmbeddableInstantiator Package Description org.hibernate.annotations Package containing all Hibernate's specific annotations.org.hibernate.boot.internal org.hibernate.boot.spi org.hibernate.cfg org.hibernate.envers.internal.entities.mapper org.hibernate.envers.internal.entities.mapper.relation.component org.hibernate.mapping org.hibernate.metamodel.internal org.hibernate.metamodel.mapping.internal org.hibernate.metamodel.spi org.hibernate.usertype org.hibernate.usertype.internal -
-
Uses of EmbeddableInstantiator in org.hibernate.annotations
Methods in org.hibernate.annotations that return types with arguments of type EmbeddableInstantiator Modifier and Type Method Description Class<? extends EmbeddableInstantiator>
instantiator()
Class<? extends EmbeddableInstantiator>
value()
-
Uses of EmbeddableInstantiator in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return types with arguments of type EmbeddableInstantiator Modifier and Type Method Description Class<? extends EmbeddableInstantiator>
InFlightMetadataCollectorImpl. findRegisteredEmbeddableInstantiator(Class<?> embeddableType)
-
Uses of EmbeddableInstantiator in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return types with arguments of type EmbeddableInstantiator Modifier and Type Method Description Class<? extends EmbeddableInstantiator>
InFlightMetadataCollector. findRegisteredEmbeddableInstantiator(Class<?> embeddableType)
-
Uses of EmbeddableInstantiator in org.hibernate.cfg
Method parameters in org.hibernate.cfg with type arguments of type EmbeddableInstantiator Modifier and Type Method Description static Component
AnnotationBinder. createComponent(PropertyHolder propertyHolder, PropertyData inferredData, boolean isComponentEmbedded, boolean isIdentifierMapper, Class<? extends EmbeddableInstantiator> customInstantiatorImpl, MetadataBuildingContext context)
static Component
AnnotationBinder. fillComponent(PropertyHolder propertyHolder, PropertyData inferredData, AccessType propertyAccessor, boolean isNullable, EntityBinder entityBinder, boolean isComponentEmbedded, boolean isIdentifierMapper, boolean inSecondPass, Class<? extends EmbeddableInstantiator> customInstantiatorImpl, Class<? extends CompositeUserType<?>> compositeUserTypeClass, MetadataBuildingContext buildingContext, Map<org.hibernate.annotations.common.reflection.XClass,InheritanceState> inheritanceStatePerClass)
static Component
AnnotationBinder. fillComponent(PropertyHolder propertyHolder, PropertyData inferredData, PropertyData baseInferredData, AccessType propertyAccessor, boolean isNullable, EntityBinder entityBinder, boolean isComponentEmbedded, boolean isIdentifierMapper, boolean inSecondPass, Class<? extends EmbeddableInstantiator> customInstantiatorImpl, Class<? extends CompositeUserType<?>> compositeUserTypeClass, MetadataBuildingContext buildingContext, Map<org.hibernate.annotations.common.reflection.XClass,InheritanceState> inheritanceStatePerClass)
-
Uses of EmbeddableInstantiator in org.hibernate.envers.internal.entities.mapper
Methods in org.hibernate.envers.internal.entities.mapper with parameters of type EmbeddableInstantiator Modifier and Type Method Description CompositeMapperBuilder
ComponentPropertyMapper. addComponent(PropertyData propertyData, Class componentClass, EmbeddableInstantiator instantiator)
CompositeMapperBuilder
CompositeMapperBuilder. addComponent(PropertyData propertyData, Class componentClass, EmbeddableInstantiator instantiator)
CompositeMapperBuilder
MultiPropertyMapper. addComponent(PropertyData propertyData, Class componentClass, EmbeddableInstantiator instantiator)
CompositeMapperBuilder
SubclassPropertyMapper. addComponent(PropertyData propertyData, Class componentClass, EmbeddableInstantiator instantiator)
Constructors in org.hibernate.envers.internal.entities.mapper with parameters of type EmbeddableInstantiator Constructor Description ComponentPropertyMapper(PropertyData propertyData, Class componentClass, EmbeddableInstantiator instantiator)
-
Uses of EmbeddableInstantiator in org.hibernate.envers.internal.entities.mapper.relation.component
Methods in org.hibernate.envers.internal.entities.mapper.relation.component with parameters of type EmbeddableInstantiator Modifier and Type Method Description CompositeMapperBuilder
MiddleEmbeddableComponentMapper. addComponent(PropertyData propertyData, Class componentClass, EmbeddableInstantiator instantiator)
-
Uses of EmbeddableInstantiator in org.hibernate.mapping
Methods in org.hibernate.mapping that return types with arguments of type EmbeddableInstantiator Modifier and Type Method Description Class<? extends EmbeddableInstantiator>
Component. getCustomInstantiator()
Method parameters in org.hibernate.mapping with type arguments of type EmbeddableInstantiator Modifier and Type Method Description void
Component. setCustomInstantiator(Class<? extends EmbeddableInstantiator> customInstantiator)
-
Uses of EmbeddableInstantiator in org.hibernate.metamodel.internal
Subinterfaces of EmbeddableInstantiator in org.hibernate.metamodel.internal Modifier and Type Interface Description interface
StandardEmbeddableInstantiator
Marker interface for standard EmbeddableInstantiator implementations.Classes in org.hibernate.metamodel.internal that implement EmbeddableInstantiator Modifier and Type Class Description class
EmbeddableCompositeUserTypeInstantiator
class
EmbeddableInstantiatorDynamicMap
Support for instantiating embeddables as dynamic-map representationclass
EmbeddableInstantiatorPojoOptimized
Support for instantiating embeddables as POJO representation using bytecode optimizerclass
EmbeddableInstantiatorPojoStandard
Support for instantiating embeddables as POJO representationclass
EmbeddableInstantiatorProxied
EmbeddableInstantiator used for instantiating "proxies" of an embeddable.Methods in org.hibernate.metamodel.internal that return EmbeddableInstantiator Modifier and Type Method Description EmbeddableInstantiator
EmbeddableRepresentationStrategyMap. getInstantiator()
EmbeddableInstantiator
EmbeddableRepresentationStrategyPojo. getInstantiator()
Constructors in org.hibernate.metamodel.internal with parameters of type EmbeddableInstantiator Constructor Description EmbeddableRepresentationStrategyMap(Component bootDescriptor, Supplier<EmbeddableMappingType> runtimeDescriptorAccess, EmbeddableInstantiator customInstantiator, RuntimeModelCreationContext creationContext)
EmbeddableRepresentationStrategyPojo(Component bootDescriptor, Supplier<EmbeddableMappingType> runtimeDescriptorAccess, EmbeddableInstantiator customInstantiator, CompositeUserType<Object> compositeUserType, RuntimeModelCreationContext creationContext)
-
Uses of EmbeddableInstantiator in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal that return EmbeddableInstantiator Modifier and Type Method Description EmbeddableInstantiator
IdClassRepresentationStrategy. getInstantiator()
EmbeddableInstantiator
VirtualIdRepresentationStrategy. getInstantiator()
-
Uses of EmbeddableInstantiator in org.hibernate.metamodel.spi
Methods in org.hibernate.metamodel.spi that return EmbeddableInstantiator Modifier and Type Method Description EmbeddableInstantiator
EmbeddableRepresentationStrategy. getInstantiator()
Create a delegate capable of instantiating instances of the represented type. -
Uses of EmbeddableInstantiator in org.hibernate.usertype
Subinterfaces of EmbeddableInstantiator in org.hibernate.usertype Modifier and Type Interface Description interface
CompositeUserType<J>
A UserType that may be dereferenced in a query. -
Uses of EmbeddableInstantiator in org.hibernate.usertype.internal
Classes in org.hibernate.usertype.internal that implement EmbeddableInstantiator Modifier and Type Class Description class
AbstractTimeZoneStorageCompositeUserType<T>
class
OffsetDateTimeCompositeUserType
class
ZonedDateTimeCompositeUserType
-