Package | Description |
---|---|
org.hibernate.engine.spi | |
org.hibernate.loader.plan.spi |
Defines the SPI for the building blocks that make up a LoadPlan.
|
org.hibernate.mapping |
This package defines the Hibernate configuration-time metamodel.
|
org.hibernate.persister.collection |
This package abstracts the persistence mechanism for collections.
|
org.hibernate.persister.walking.spi | |
org.hibernate.type |
A Hibernate Type is a strategy for mapping a
Java property type to a JDBC type or types.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Iterator |
CascadingActions.getAllElementsIterator(EventSource session,
CollectionType collectionType,
java.lang.Object collection)
Given a collection, get an iterator of all its children, loading them
from the database if necessary.
|
java.util.Iterator |
CascadingAction.getCascadableChildrenIterator(EventSource session,
CollectionType collectionType,
java.lang.Object collection)
Given a collection, get an iterator of the children upon which the
current cascading action should be visited.
|
static java.util.Iterator |
CascadingActions.getLoadedElementsIterator(SharedSessionContractImplementor session,
CollectionType collectionType,
java.lang.Object collection)
Iterate just the elements of the collection that are already there.
|
Modifier and Type | Method and Description |
---|---|
CollectionType |
CollectionAttributeFetch.getFetchedType()
Get the Hibernate Type that describes the fetched attribute as a
CollectionType . |
Modifier and Type | Method and Description |
---|---|
CollectionType |
Collection.getCollectionType() |
CollectionType |
List.getDefaultCollectionType() |
CollectionType |
Map.getDefaultCollectionType() |
CollectionType |
Set.getDefaultCollectionType() |
CollectionType |
Array.getDefaultCollectionType() |
CollectionType |
Bag.getDefaultCollectionType() |
abstract CollectionType |
Collection.getDefaultCollectionType() |
CollectionType |
IdentifierBag.getDefaultCollectionType() |
Modifier and Type | Method and Description |
---|---|
CollectionType |
AbstractCollectionPersister.getCollectionType() |
CollectionType |
CollectionPersister.getCollectionType()
Get the associated Type
|
Modifier and Type | Method and Description |
---|---|
CollectionType |
CollectionDefinition.getCollectionType() |
Modifier and Type | Class and Description |
---|---|
class |
ArrayType
A type for persistent arrays.
|
class |
BagType |
class |
CustomCollectionType
A custom type for mapping user-written classes that implement PersistentCollection
|
class |
IdentifierBagType |
class |
ListType |
class |
MapType |
class |
OrderedMapType
A specialization of the map type, with (resultset-based) ordering.
|
class |
OrderedSetType
A specialization of the set type, with (resultset-based) ordering.
|
class |
SetType |
class |
SortedMapType |
class |
SortedSetType |
Modifier and Type | Method and Description |
---|---|
CollectionType |
TypeFactory.array(java.lang.String role,
java.lang.String propertyRef,
java.lang.Class elementClass)
Deprecated.
|
CollectionType |
TypeFactory.bag(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.customCollection(java.lang.String typeName,
java.util.Properties typeParameters,
java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.idbag(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.list(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.map(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.orderedMap(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.orderedSet(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.set(java.lang.String role,
java.lang.String propertyRef)
Deprecated.
|
CollectionType |
TypeFactory.sortedMap(java.lang.String role,
java.lang.String propertyRef,
java.util.Comparator comparator)
Deprecated.
|
CollectionType |
TypeFactory.sortedSet(java.lang.String role,
java.lang.String propertyRef,
java.util.Comparator comparator)
Deprecated.
|
Copyright © 2001-2019 Red Hat, Inc. All Rights Reserved.