public class PersistentBag extends AbstractPersistentCollection implements java.util.List
AbstractPersistentCollection.AbstractValueDelayedOperation, AbstractPersistentCollection.DelayedOperation, AbstractPersistentCollection.IteratorProxy, AbstractPersistentCollection.LazyInitializationWork<T>, AbstractPersistentCollection.ListIteratorProxy, AbstractPersistentCollection.ListProxy, AbstractPersistentCollection.SetProxy, AbstractPersistentCollection.ValueDelayedOperation| Modifier and Type | Field and Description |
|---|---|
protected java.util.List |
bag |
UNKNOWN| Constructor and Description |
|---|
PersistentBag()
Constructs a PersistentBag.
|
PersistentBag(SharedSessionContractImplementor session)
Constructs a PersistentBag
|
PersistentBag(SharedSessionContractImplementor session,
java.util.Collection coll)
Constructs a PersistentBag
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(int i,
java.lang.Object o) |
boolean |
add(java.lang.Object object) |
boolean |
addAll(java.util.Collection values) |
boolean |
addAll(int i,
java.util.Collection c) |
void |
beforeInitialize(CollectionPersister persister,
int anticipatedSize)
Called before any elements are read into the collection,
allowing appropriate initializations to occur.
|
void |
clear() |
boolean |
contains(java.lang.Object object) |
boolean |
containsAll(java.util.Collection c) |
java.io.Serializable |
disassemble(CollectionPersister persister)
Disassemble the collection to get it ready for the cache
|
boolean |
empty()
Is the collection empty? (don't try to initialize the collection)
|
java.util.Iterator |
entries(CollectionPersister persister)
Iterate all collection entries, during update of the database
|
boolean |
entryExists(java.lang.Object entry,
int i)
Does the given element/entry exist in the collection?
|
boolean |
equals(java.lang.Object obj)
Bag does not respect the collection API and do an
JVM instance comparison to do the equals.
|
boolean |
equalsSnapshot(CollectionPersister persister)
Does the current state exactly match the snapshot?
|
java.lang.Object |
get(int i) |
java.util.Iterator |
getDeletes(CollectionPersister persister,
boolean indexIsFormula)
Get all the elements that need deleting
|
java.lang.Object |
getElement(java.lang.Object entry)
Get the value of the given collection entry.
|
java.lang.Object |
getIndex(java.lang.Object entry,
int i,
CollectionPersister persister)
Get the index of the given collection entry
|
java.util.Collection |
getOrphans(java.io.Serializable snapshot,
java.lang.String entityName)
get all "orphaned" elements
|
java.io.Serializable |
getSnapshot(CollectionPersister persister)
Return a new snapshot of the current state of the collection
|
java.lang.Object |
getSnapshotElement(java.lang.Object entry,
int i)
Get the snapshot value of the given collection entry
|
int |
hashCode() |
int |
indexOf(java.lang.Object o) |
void |
initializeFromCache(CollectionPersister persister,
java.io.Serializable disassembled,
java.lang.Object owner)
Read the state of the collection from a disassembled cached value
|
boolean |
isEmpty() |
boolean |
isRowUpdatePossible()
Can each element in the collection be mapped unequivocally to a single row in the database? Generally
bags and sets are the only collections that cannot be.
|
boolean |
isSnapshotEmpty(java.io.Serializable snapshot)
Is the snapshot empty?
|
boolean |
isWrapper(java.lang.Object collection)
Is this the wrapper for the given collection instance?
|
java.util.Iterator |
iterator() |
int |
lastIndexOf(java.lang.Object o) |
java.util.ListIterator |
listIterator() |
java.util.ListIterator |
listIterator(int i) |
boolean |
needsInserting(java.lang.Object entry,
int i,
Type elemType)
Do we need to insert this element?
|
boolean |
needsRecreate(CollectionPersister persister)
Do we need to completely recreate this collection when it changes?
|
boolean |
needsUpdating(java.lang.Object entry,
int i,
Type elemType)
Do we need to update this element?
|
int |
occurrences(java.lang.Object o)
Count how many times the given object occurs in the elements
|
java.lang.Object |
readFrom(java.sql.ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
java.lang.Object owner)
Read a row from the JDBC result set
|
java.lang.Object |
remove(int i) |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection c) |
boolean |
retainAll(java.util.Collection c) |
java.lang.Object |
set(int i,
java.lang.Object o) |
int |
size() |
java.util.List |
subList(int start,
int end) |
java.lang.Object[] |
toArray() |
java.lang.Object[] |
toArray(java.lang.Object[] a) |
java.lang.String |
toString() |
afterInitialize, afterRowInsert, beginRead, clearDirty, clearOperationQueue, dirty, endRead, forceInitialization, getCachedSize, getIdentifier, getKey, getOrphans, getOwner, getQueuedOrphans, getRole, getSession, getSnapshot, getStoredSnapshot, getValue, hasQueuedOperations, identityRemove, initialize, isClearQueueEnabled, isConnectedToSession, isDirectlyAccessible, isDirty, isInitialized, isInverseCollection, isInverseCollectionNoOrphanDelete, isInverseOneToManyOrNoOrphanDelete, isOperationQueueEnabled, isPutQueueEnabled, isUnreferenced, performQueuedOperations, postAction, preInsert, prepareForPossibleLoadingOutsideTransaction, queuedAdditionIterator, queueOperation, read, readElementByIndex, readElementExistence, readIndexExistence, readSize, replaceQueuedOperationValues, setCurrentSession, setDirectlyAccessible, setInitialized, setOwner, setSnapshot, unsetSession, wasInitialized, writepublic PersistentBag()
public PersistentBag(SharedSessionContractImplementor session)
session - The sessionpublic PersistentBag(SharedSessionContractImplementor session, java.util.Collection coll)
session - The sessioncoll - The base elements.public boolean isWrapper(java.lang.Object collection)
PersistentCollectionisWrapper in interface PersistentCollectioncollection - The collection to check whether this is wrapping ittrue if this is a wrapper around that given collection instance.public boolean empty()
PersistentCollectionempty in interface PersistentCollectionempty in class AbstractPersistentCollectionfalse if the collection is non-empty; true otherwise.public java.util.Iterator entries(CollectionPersister persister)
PersistentCollectionentries in interface PersistentCollectionpersister - The collection persister.public java.lang.Object readFrom(java.sql.ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
java.lang.Object owner)
throws HibernateException,
java.sql.SQLException
PersistentCollectionreadFrom in interface PersistentCollectionrs - The JDBC ResultSetpersister - The collection roledescriptor - The aliases used for the columns making up the collectionowner - The collection ownerHibernateException - Generally indicates a problem resolving data read from the ResultSetjava.sql.SQLException - Indicates a problem accessing the ResultSetpublic void beforeInitialize(CollectionPersister persister, int anticipatedSize)
PersistentCollectionbeforeInitialize in interface PersistentCollectionpersister - The underlying collection persister.anticipatedSize - The anticipated size of the collection after initialization is complete.public boolean equalsSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollectionequalsSnapshot in interface PersistentCollectionpersister - The collection persistertrue if the current state and the snapshot state match.HibernateExceptionpublic boolean isSnapshotEmpty(java.io.Serializable snapshot)
PersistentCollectionisSnapshotEmpty in interface PersistentCollectionsnapshot - The snapshot to checktrue if the given snapshot is emptypublic java.io.Serializable getSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollectiongetSnapshot in interface PersistentCollectionpersister - The collection persisterHibernateExceptionpublic java.util.Collection getOrphans(java.io.Serializable snapshot,
java.lang.String entityName)
throws HibernateException
PersistentCollectiongetOrphans in interface PersistentCollectiongetOrphans in class AbstractPersistentCollectionsnapshot - The snapshot stateentityName - The name of the entity that are the elements of the collectionHibernateExceptionpublic java.io.Serializable disassemble(CollectionPersister persister) throws HibernateException
PersistentCollectiondisassemble in interface PersistentCollectionpersister - The collection persisterHibernateExceptionpublic void initializeFromCache(CollectionPersister persister, java.io.Serializable disassembled, java.lang.Object owner) throws HibernateException
PersistentCollectioninitializeFromCache in interface PersistentCollectionpersister - The collection persisterdisassembled - The disassembled cached stateowner - The collection ownerHibernateExceptionpublic boolean needsRecreate(CollectionPersister persister)
PersistentCollectionneedsRecreate in interface PersistentCollectionneedsRecreate in class AbstractPersistentCollectionpersister - The collection persistertrue if a change requires a recreate.public java.util.Iterator getDeletes(CollectionPersister persister, boolean indexIsFormula) throws HibernateException
PersistentCollectiongetDeletes in interface PersistentCollectionpersister - The collection persisterindexIsFormula - For indexed collections, tells whether the index is a formula (calculated value) mappingHibernateExceptionpublic boolean needsInserting(java.lang.Object entry,
int i,
Type elemType)
throws HibernateException
PersistentCollectionneedsInserting in interface PersistentCollectionentry - The collection element to checki - The index (for indexed collections)elemType - The type for the elementtrue if the element needs insertingHibernateExceptionpublic boolean isRowUpdatePossible()
PersistentCollectionisRowUpdatePossible in interface PersistentCollectionisRowUpdatePossible in class AbstractPersistentCollectiontrue if the row for each element is knownpublic boolean needsUpdating(java.lang.Object entry,
int i,
Type elemType)
PersistentCollectionneedsUpdating in interface PersistentCollectionentry - The collection element to checki - The index (for indexed collections)elemType - The type for the elementtrue if the element needs updatingpublic int size()
size in interface java.util.Collectionsize in interface java.util.Listpublic boolean isEmpty()
isEmpty in interface java.util.CollectionisEmpty in interface java.util.Listpublic boolean contains(java.lang.Object object)
contains in interface java.util.Collectioncontains in interface java.util.Listpublic java.util.Iterator iterator()
iterator in interface java.lang.Iterableiterator in interface java.util.Collectioniterator in interface java.util.Listpublic java.lang.Object[] toArray()
toArray in interface java.util.CollectiontoArray in interface java.util.Listpublic java.lang.Object[] toArray(java.lang.Object[] a)
toArray in interface java.util.CollectiontoArray in interface java.util.Listpublic boolean add(java.lang.Object object)
add in interface java.util.Collectionadd in interface java.util.Listpublic boolean remove(java.lang.Object o)
remove in interface java.util.Collectionremove in interface java.util.Listpublic boolean containsAll(java.util.Collection c)
containsAll in interface java.util.CollectioncontainsAll in interface java.util.Listpublic boolean addAll(java.util.Collection values)
addAll in interface java.util.CollectionaddAll in interface java.util.Listpublic boolean removeAll(java.util.Collection c)
removeAll in interface java.util.CollectionremoveAll in interface java.util.Listpublic boolean retainAll(java.util.Collection c)
retainAll in interface java.util.CollectionretainAll in interface java.util.Listpublic void clear()
clear in interface java.util.Collectionclear in interface java.util.Listpublic java.lang.Object getIndex(java.lang.Object entry,
int i,
CollectionPersister persister)
PersistentCollectiongetIndex in interface PersistentCollectionentry - The collection entry/elementi - The assumed indexpersister - it was more elegant before we added this...public java.lang.Object getElement(java.lang.Object entry)
PersistentCollectiongetElement in interface PersistentCollectionentry - The object instance for which to get the collection element instance.public java.lang.Object getSnapshotElement(java.lang.Object entry,
int i)
PersistentCollectiongetSnapshotElement in interface PersistentCollectionentry - The entryi - The indexpublic int occurrences(java.lang.Object o)
o - The object to checkpublic void add(int i,
java.lang.Object o)
add in interface java.util.Listpublic boolean addAll(int i,
java.util.Collection c)
addAll in interface java.util.Listpublic java.lang.Object get(int i)
get in interface java.util.Listpublic int indexOf(java.lang.Object o)
indexOf in interface java.util.Listpublic int lastIndexOf(java.lang.Object o)
lastIndexOf in interface java.util.Listpublic java.util.ListIterator listIterator()
listIterator in interface java.util.Listpublic java.util.ListIterator listIterator(int i)
listIterator in interface java.util.Listpublic java.lang.Object remove(int i)
remove in interface java.util.Listpublic java.lang.Object set(int i,
java.lang.Object o)
set in interface java.util.Listpublic java.util.List subList(int start,
int end)
subList in interface java.util.Listpublic boolean entryExists(java.lang.Object entry,
int i)
PersistentCollectionentryExists in interface PersistentCollectionentry - The object to check if it exists as a collection elementi - Unusedtrue if the given entry is a collection elementpublic java.lang.String toString()
toString in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in interface java.util.Collectionequals in interface java.util.Listequals in class java.lang.Object{@inheritDoc}public int hashCode()
hashCode in interface java.util.CollectionhashCode in interface java.util.ListhashCode in class java.lang.ObjectCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.