Uses of Class
org.hibernate.metamodel.CollectionClassification
-
Packages that use CollectionClassification Package Description org.hibernate.annotations A set of mapping annotations which extend the O/R mapping annotations defined by JPA.org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.model.source.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.collection.internal Internal implementations and support for persistent collections.org.hibernate.collection.spi This package defines the SPI of a framework for lazy-initializing and state-tracking collection wrappers.org.hibernate.metamodel This package defines an API for accessing the runtime metamodel describing persistent entities in Java and their mappings to the relational database schema.org.hibernate.metamodel.internal org.hibernate.metamodel.model.domain Defines the runtime domain metamodel, which describes the Java aspect of the application's domain model parts (entities, attributes).org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.org.hibernate.testing.orm.junit org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.usertype An API for user-defined custom types which extend the set of built-in types defined inorg.hibernate.type
. -
-
Uses of CollectionClassification in org.hibernate.annotations
Methods in org.hibernate.annotations that return CollectionClassification Modifier and Type Method Description CollectionClassification
classification()
The collection classification for which the supplied type applies -
Uses of CollectionClassification in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type CollectionClassification Modifier and Type Method Description MetadataBuilder
MetadataBuilder. applyImplicitListSemantics(CollectionClassification classification)
-
Uses of CollectionClassification in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return CollectionClassification Modifier and Type Method Description CollectionClassification
MetadataBuilderImpl.MappingDefaultsImpl. getImplicitListClassification()
Methods in org.hibernate.boot.internal with parameters of type CollectionClassification Modifier and Type Method Description void
InFlightMetadataCollectorImpl. addCollectionTypeRegistration(CollectionClassification classification, InFlightMetadataCollector.CollectionTypeRegistrationDescriptor descriptor)
MetadataBuilder
MetadataBuilderImpl. applyImplicitListSemantics(CollectionClassification classification)
InFlightMetadataCollector.CollectionTypeRegistrationDescriptor
InFlightMetadataCollectorImpl. findCollectionTypeRegistration(CollectionClassification classification)
-
Uses of CollectionClassification in org.hibernate.boot.model.source.internal
Methods in org.hibernate.boot.model.source.internal that return CollectionClassification Modifier and Type Method Description CollectionClassification
OverriddenMappingDefaults.Builder. getImplicitListClassification()
CollectionClassification
OverriddenMappingDefaults. getImplicitListClassification()
Methods in org.hibernate.boot.model.source.internal with parameters of type CollectionClassification Modifier and Type Method Description OverriddenMappingDefaults.Builder
OverriddenMappingDefaults.Builder. setImplicitListClassification(CollectionClassification implicitListClassification)
Constructors in org.hibernate.boot.model.source.internal with parameters of type CollectionClassification Constructor Description OverriddenMappingDefaults(String implicitSchemaName, String implicitCatalogName, boolean implicitlyQuoteIdentifiers, String implicitIdColumnName, String implicitTenantIdColumnName, String implicitDiscriminatorColumnName, String implicitPackageName, boolean autoImportEnabled, String implicitCascadeStyleName, String implicitPropertyAccessorName, boolean entitiesImplicitlyLazy, boolean pluralAttributesImplicitlyLazy, AccessType implicitCacheAccessType, CollectionClassification implicitListClassification)
-
Uses of CollectionClassification in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return CollectionClassification Modifier and Type Method Description CollectionClassification
MappingDefaults. getImplicitListClassification()
Collection semantics to be applied toList
attributes with no explicit configurationMethods in org.hibernate.boot.spi with parameters of type CollectionClassification Modifier and Type Method Description void
InFlightMetadataCollector. addCollectionTypeRegistration(CollectionClassification classification, InFlightMetadataCollector.CollectionTypeRegistrationDescriptor descriptor)
InFlightMetadataCollector.CollectionTypeRegistrationDescriptor
InFlightMetadataCollector. findCollectionTypeRegistration(CollectionClassification classification)
-
Uses of CollectionClassification in org.hibernate.collection.internal
-
Uses of CollectionClassification in org.hibernate.collection.spi
Methods in org.hibernate.collection.spi that return CollectionClassification Modifier and Type Method Description CollectionClassification
CollectionSemantics. getCollectionClassification()
The classification handled by this semanticMethods in org.hibernate.collection.spi with parameters of type CollectionClassification Modifier and Type Method Description static CollectionInitializerProducer
InitializerProducerBuilder. createCollectionTypeWrapperInitializerProducer(NavigablePath navigablePath, PluralAttributeMapping attributeMapping, CollectionClassification classification, FetchParent fetchParent, boolean selected, Fetch indexFetch, Fetch elementFetch, DomainResultCreationState creationState)
static CollectionInitializerProducer
InitializerProducerBuilder. createInitializerProducer(NavigablePath navigablePath, PluralAttributeMapping attributeMapping, CollectionClassification classification, FetchParent fetchParent, boolean selected, Fetch indexFetch, Fetch elementFetch, DomainResultCreationState creationState)
-
Uses of CollectionClassification in org.hibernate.metamodel
Methods in org.hibernate.metamodel that return CollectionClassification Modifier and Type Method Description static CollectionClassification
CollectionClassification. interpretSetting(Object value)
One of:CollectionClassification
instanceCollectionClassification
name (case insensitive)Class
reference for eitherList
orCollection
static CollectionClassification
CollectionClassification. valueOf(String name)
Returns the enum constant of this type with the specified name.static CollectionClassification[]
CollectionClassification. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CollectionClassification in org.hibernate.metamodel.internal
Methods in org.hibernate.metamodel.internal that return CollectionClassification Modifier and Type Method Description CollectionClassification
PluralAttributeMetadata. getCollectionClassification()
The classification of the collection, indicating the collection semantics to be used. -
Uses of CollectionClassification in org.hibernate.metamodel.model.domain
Methods in org.hibernate.metamodel.model.domain that return CollectionClassification Modifier and Type Method Description CollectionClassification
PluralPersistentAttribute. getCollectionClassification()
-
Uses of CollectionClassification in org.hibernate.metamodel.model.domain.internal
Methods in org.hibernate.metamodel.model.domain.internal that return CollectionClassification Modifier and Type Method Description CollectionClassification
AbstractPluralAttribute. getCollectionClassification()
CollectionClassification
PluralAttributeBuilder. getCollectionClassification()
Constructors in org.hibernate.metamodel.model.domain.internal with parameters of type CollectionClassification Constructor Description PluralAttributeBuilder(JavaType<C> collectionJtd, boolean isGeneric, AttributeClassification attributeClassification, CollectionClassification collectionClassification, DomainType<E> elementType, DomainType<K> listIndexOrMapKeyType, ManagedDomainType<D> declaringType, Property property, Member member)
-
Uses of CollectionClassification in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit that return CollectionClassification Modifier and Type Method Description CollectionClassification
ImplicitListAsBagProvider. getSetting()
CollectionClassification
ImplicitListAsListProvider. getSetting()
-
Uses of CollectionClassification in org.hibernate.type
Methods in org.hibernate.type that return CollectionClassification Modifier and Type Method Description CollectionClassification
ArrayType. getCollectionClassification()
CollectionClassification
BagType. getCollectionClassification()
abstract CollectionClassification
CollectionType. getCollectionClassification()
CollectionClassification
CustomCollectionType. getCollectionClassification()
CollectionClassification
IdentifierBagType. getCollectionClassification()
CollectionClassification
ListType. getCollectionClassification()
CollectionClassification
MapType. getCollectionClassification()
CollectionClassification
OrderedMapType. getCollectionClassification()
CollectionClassification
OrderedSetType. getCollectionClassification()
CollectionClassification
SetType. getCollectionClassification()
CollectionClassification
SortedMapType. getCollectionClassification()
CollectionClassification
SortedSetType. getCollectionClassification()
-
Uses of CollectionClassification in org.hibernate.usertype
Methods in org.hibernate.usertype that return CollectionClassification Modifier and Type Method Description CollectionClassification
UserCollectionType. getClassification()
The classification mapped by this custom type
-