Uses of Class
org.hibernate.type.CollectionType
-
Packages that use CollectionType 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 org.hibernate.persister.collection org.hibernate.persister.walking.spi org.hibernate.type -
-
Uses of CollectionType in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type CollectionType Modifier and Type Method 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. -
Uses of CollectionType in org.hibernate.loader.plan.spi
Methods in org.hibernate.loader.plan.spi that return CollectionType Modifier and Type Method Description CollectionType
CollectionAttributeFetch. getFetchedType()
Get the Hibernate Type that describes the fetched attribute as aCollectionType
. -
Uses of CollectionType in org.hibernate.mapping
Methods in org.hibernate.mapping that return CollectionType Modifier and Type Method Description CollectionType
Collection. getCollectionType()
CollectionType
Array. getDefaultCollectionType()
CollectionType
Bag. getDefaultCollectionType()
abstract CollectionType
Collection. getDefaultCollectionType()
CollectionType
IdentifierBag. getDefaultCollectionType()
CollectionType
List. getDefaultCollectionType()
CollectionType
Map. getDefaultCollectionType()
CollectionType
Set. getDefaultCollectionType()
-
Uses of CollectionType in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that return CollectionType Modifier and Type Method Description CollectionType
AbstractCollectionPersister. getCollectionType()
CollectionType
CollectionPersister. getCollectionType()
Get the associated Type -
Uses of CollectionType in org.hibernate.persister.walking.spi
Methods in org.hibernate.persister.walking.spi that return CollectionType Modifier and Type Method Description CollectionType
CollectionDefinition. getCollectionType()
-
Uses of CollectionType in org.hibernate.type
Subclasses of CollectionType in org.hibernate.type Modifier and Type Class Description class
ArrayType
A type for persistent arrays.class
BagType
class
CustomCollectionType
A custom type for mapping user-written classes that implement PersistentCollectionclass
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
Methods in org.hibernate.type that return CollectionType Modifier and Type Method 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.
-