Package org.hibernate.usertype
Interface UserCollectionType
-
public interface UserCollectionType
A custom type for mapping user-written classes which implementPersistentCollection
.- See Also:
PersistentCollection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
contains(Object collection, Object entity)
Optional operation.CollectionClassification
getClassification()
The classification mapped by this custom typeClass<?>
getCollectionClass()
The Java type that this type maps.Iterator<?>
getElementsIterator(Object collection)
Return an iterator over the elements of this collection - the passed collection instance may or may not be a wrapperObject
indexOf(Object collection, Object entity)
Optional operation.Object
instantiate(int anticipatedSize)
Instantiate an empty instance of the "underlying" collection (not a wrapper), but with the given anticipated size (i.e.PersistentCollection<?>
instantiate(SharedSessionContractImplementor session, CollectionPersister persister)
Instantiate an uninitialized instance of the collection wrapperObject
replaceElements(Object original, Object target, CollectionPersister persister, Object owner, Map copyCache, SharedSessionContractImplementor session)
Replace the elements of a collection with the elements of another collectionPersistentCollection<?>
wrap(SharedSessionContractImplementor session, Object collection)
Wrap an instance of a collection
-
-
-
Method Detail
-
getClassification
CollectionClassification getClassification()
The classification mapped by this custom type
-
getCollectionClass
Class<?> getCollectionClass()
The Java type that this type maps.
-
instantiate
PersistentCollection<?> instantiate(SharedSessionContractImplementor session, CollectionPersister persister) throws HibernateException
Instantiate an uninitialized instance of the collection wrapper- Throws:
HibernateException
-
wrap
PersistentCollection<?> wrap(SharedSessionContractImplementor session, Object collection)
Wrap an instance of a collection
-
getElementsIterator
Iterator<?> getElementsIterator(Object collection)
Return an iterator over the elements of this collection - the passed collection instance may or may not be a wrapper
-
contains
boolean contains(Object collection, Object entity)
Optional operation. Does the collection contain the entity instance?
-
indexOf
Object indexOf(Object collection, Object entity)
Optional operation. Return the index of the entity in the collection.
-
replaceElements
Object replaceElements(Object original, Object target, CollectionPersister persister, Object owner, Map copyCache, SharedSessionContractImplementor session) throws HibernateException
Replace the elements of a collection with the elements of another collection- Throws:
HibernateException
-
instantiate
Object instantiate(int anticipatedSize)
Instantiate an empty instance of the "underlying" collection (not a wrapper), but with the given anticipated size (i.e. accounting for initial size and perhaps load factor).- Parameters:
anticipatedSize
- The anticipated size of the instantiated collection after we are done populating it. Note, may be negative to indicate that we not yet know anything about the anticipated size (i.e., when initializing from a result set row by row).
-
-