public class PersistentBag extends AbstractPersistentCollection implements 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 List | bag | 
UNKNOWN| Constructor and Description | 
|---|
| PersistentBag()Constructs a PersistentBag. | 
| PersistentBag(SessionImplementor session)Constructs a PersistentBag | 
| PersistentBag(SessionImplementor session,
             Collection coll)Constructs a PersistentBag | 
| Modifier and Type | Method and Description | 
|---|---|
| void | add(int i,
   Object o) | 
| boolean | add(Object object) | 
| boolean | addAll(Collection values) | 
| boolean | addAll(int i,
      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(Object object) | 
| boolean | containsAll(Collection c) | 
| 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) | 
| Iterator | entries(CollectionPersister persister)Iterate all collection entries, during update of the database | 
| boolean | entryExists(Object entry,
           int i)Does the given element/entry exist in the collection? | 
| boolean | equals(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? | 
| Object | get(int i) | 
| Iterator | getDeletes(CollectionPersister persister,
          boolean indexIsFormula)Get all the elements that need deleting | 
| Object | getElement(Object entry)Get the value of the given collection entry. | 
| Object | getIndex(Object entry,
        int i,
        CollectionPersister persister)Get the index of the given collection entry | 
| Collection | getOrphans(Serializable snapshot,
          String entityName)get all "orphaned" elements | 
| Serializable | getSnapshot(CollectionPersister persister)Return a new snapshot of the current state of the collection | 
| Object | getSnapshotElement(Object entry,
                  int i)Get the snapshot value of the given collection entry | 
| int | hashCode() | 
| int | indexOf(Object o) | 
| void | initializeFromCache(CollectionPersister persister,
                   Serializable disassembled,
                   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(Serializable snapshot)Is the snapshot empty? | 
| boolean | isWrapper(Object collection)Is this the wrapper for the given collection instance? | 
| Iterator | iterator() | 
| int | lastIndexOf(Object o) | 
| ListIterator | listIterator() | 
| ListIterator | listIterator(int i) | 
| boolean | needsInserting(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(Object entry,
             int i,
             Type elemType)Do we need to update this element? | 
| int | occurrences(Object o)Count how many times the given object occurs in the elements | 
| Object | readFrom(ResultSet rs,
        CollectionPersister persister,
        CollectionAliases descriptor,
        Object owner)Read a row from the JDBC result set | 
| Object | remove(int i) | 
| boolean | remove(Object o) | 
| boolean | removeAll(Collection c) | 
| boolean | retainAll(Collection c) | 
| Object | set(int i,
   Object o) | 
| int | size() | 
| List | subList(int start,
       int end) | 
| Object[] | toArray() | 
| Object[] | toArray(Object[] a) | 
| String | toString() | 
afterInitialize, afterRowInsert, beginRead, clearDirty, 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, writeclone, finalize, getClass, notify, notifyAll, wait, wait, waitreplaceAll, sort, spliteratorparallelStream, removeIf, streamprotected List bag
public PersistentBag()
public PersistentBag(SessionImplementor session)
session - The sessionpublic PersistentBag(SessionImplementor session, Collection coll)
session - The sessioncoll - The base elements.public boolean isWrapper(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 Iterator entries(CollectionPersister persister)
PersistentCollectionentries in interface PersistentCollectionpersister - The collection persister.public Object readFrom(ResultSet rs, CollectionPersister persister, CollectionAliases descriptor, Object owner) throws HibernateException, 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 ResultSetSQLException - 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(Serializable snapshot)
PersistentCollectionisSnapshotEmpty in interface PersistentCollectionsnapshot - The snapshot to checktrue if the given snapshot is emptypublic Serializable getSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollectiongetSnapshot in interface PersistentCollectionpersister - The collection persisterHibernateExceptionpublic Collection getOrphans(Serializable snapshot, 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 Serializable disassemble(CollectionPersister persister) throws HibernateException
PersistentCollectiondisassemble in interface PersistentCollectionpersister - The collection persisterHibernateExceptionpublic void initializeFromCache(CollectionPersister persister, Serializable disassembled, 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 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(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(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 Collectionsize in interface Listpublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in interface Listpublic boolean contains(Object object)
contains in interface Collectioncontains in interface Listpublic Iterator iterator()
public Object[] toArray()
toArray in interface CollectiontoArray in interface Listpublic Object[] toArray(Object[] a)
toArray in interface CollectiontoArray in interface Listpublic boolean add(Object object)
add in interface Collectionadd in interface Listpublic boolean remove(Object o)
remove in interface Collectionremove in interface Listpublic boolean containsAll(Collection c)
containsAll in interface CollectioncontainsAll in interface Listpublic boolean addAll(Collection values)
addAll in interface CollectionaddAll in interface Listpublic boolean removeAll(Collection c)
removeAll in interface CollectionremoveAll in interface Listpublic boolean retainAll(Collection c)
retainAll in interface CollectionretainAll in interface Listpublic void clear()
clear in interface Collectionclear in interface Listpublic Object getIndex(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 Object getElement(Object entry)
PersistentCollectiongetElement in interface PersistentCollectionentry - The object instance for which to get the collection element instance.public Object getSnapshotElement(Object entry, int i)
PersistentCollectiongetSnapshotElement in interface PersistentCollectionentry - The entryi - The indexpublic int occurrences(Object o)
o - The object to checkpublic boolean addAll(int i,
                      Collection c)
public int lastIndexOf(Object o)
lastIndexOf in interface Listpublic ListIterator listIterator()
listIterator in interface Listpublic ListIterator listIterator(int i)
listIterator in interface Listpublic boolean entryExists(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 boolean equals(Object obj)
equals in interface Collectionequals in interface Listequals in class Object{@inheritDoc}Copyright © 2017 JBoss by Red Hat. All rights reserved.