public class PersistentSet extends AbstractPersistentCollection implements java.util.Set
HashSet,
Serialized FormAbstractPersistentCollection.DelayedOperation| Modifier and Type | Field and Description |
|---|---|
protected java.util.Set |
set |
protected java.util.List |
tempList |
UNKNOWN| Constructor and Description |
|---|
PersistentSet()
Empty constructor.
|
PersistentSet(SessionImplementor session)
Constructor matching super.
|
PersistentSet(SessionImplementor session,
java.util.Set set)
Instantiates a non-lazy set (the underlying set is constructed
from the incoming set reference).
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(java.lang.Object value) |
boolean |
addAll(java.util.Collection coll) |
void |
beforeInitialize(CollectionPersister persister,
int anticipatedSize)
Called before any elements are read into the collection,
allowing appropriate initializations to occur.
|
void |
beginRead()
Called just before reading any rows from the JDBC result set
|
void |
clear() |
boolean |
contains(java.lang.Object object) |
boolean |
containsAll(java.util.Collection coll) |
java.io.Serializable |
disassemble(CollectionPersister persister)
Disassemble the collection, ready for the cache
|
boolean |
empty()
Is the initialized collection empty?
|
boolean |
endRead()
Called after reading all rows from the JDBC result set
|
java.util.Iterator |
entries(CollectionPersister persister)
Iterate all collection entries, during update of the database
|
boolean |
entryExists(java.lang.Object key,
int i)
Does an element exist at this entry in the collection?
|
boolean |
equals(java.lang.Object other) |
boolean |
equalsSnapshot(CollectionPersister persister)
Does the current state exactly match the snapshot?
|
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() |
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() |
boolean |
isSnapshotEmpty(java.io.Serializable snapshot)
Is the snapshot empty?
|
boolean |
isWrapper(java.lang.Object collection)
Is this the wrapper for the given underlying collection instance?
|
java.util.Iterator |
iterator() |
boolean |
needsInserting(java.lang.Object entry,
int i,
Type elemType)
Do we need to insert this element?
|
boolean |
needsUpdating(java.lang.Object entry,
int i,
Type elemType)
Do we need to update this element?
|
java.lang.Object |
readFrom(java.sql.ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
java.lang.Object owner)
Read a row from the JDBC result set
|
boolean |
remove(java.lang.Object value) |
boolean |
removeAll(java.util.Collection coll) |
boolean |
retainAll(java.util.Collection coll) |
int |
size() |
java.lang.Object[] |
toArray() |
java.lang.Object[] |
toArray(java.lang.Object[] array) |
java.lang.String |
toString() |
afterInitialize, afterRowInsert, clearDirty, dirty, forceInitialization, getCachedSize, getIdentifier, getKey, getOrphans, getOwner, getQueuedOrphans, getRole, getSession, getSnapshot, getStoredSnapshot, getValue, hasQueuedOperations, initialize, isClearQueueEnabled, isDirectlyAccessible, isDirty, isOperationQueueEnabled, isPutQueueEnabled, isUnreferenced, needsRecreate, performQueuedOperations, postAction, preInsert, queuedAdditionIterator, queueOperation, read, readElementByIndex, readElementExistence, readIndexExistence, readSize, setCurrentSession, setDirectlyAccessible, setInitialized, setOwner, setSnapshot, unsetSession, wasInitialized, writepublic PersistentSet()
public PersistentSet(SessionImplementor session)
session - The session to which this set will belong.public PersistentSet(SessionImplementor session, java.util.Set set)
session - The session to which this set will belong.set - The underlying set data.public java.io.Serializable getSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollectiongetSnapshot in interface PersistentCollectionHibernateExceptionpublic java.util.Collection getOrphans(java.io.Serializable snapshot,
java.lang.String entityName)
throws HibernateException
AbstractPersistentCollectiongetOrphans in interface PersistentCollectiongetOrphans in class AbstractPersistentCollectionHibernateExceptionpublic boolean equalsSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollectionequalsSnapshot in interface PersistentCollectionHibernateExceptionpublic boolean isSnapshotEmpty(java.io.Serializable snapshot)
PersistentCollectionisSnapshotEmpty in interface PersistentCollectionpublic void beforeInitialize(CollectionPersister persister, int anticipatedSize)
PersistentCollectionbeforeInitialize in interface PersistentCollectionpersister - The underlying collection persister.anticipatedSize - The anticipated size of the collection after initilization is complete.public void initializeFromCache(CollectionPersister persister, java.io.Serializable disassembled, java.lang.Object owner) throws HibernateException
PersistentCollectioninitializeFromCache in interface PersistentCollectionHibernateExceptionpublic boolean empty()
AbstractPersistentCollectionempty in interface PersistentCollectionempty in class AbstractPersistentCollectionpublic int size()
size in interface java.util.Collectionsize in interface java.util.SetSet.size()public boolean isEmpty()
isEmpty in interface java.util.CollectionisEmpty in interface java.util.SetSet.isEmpty()public boolean contains(java.lang.Object object)
contains in interface java.util.Collectioncontains in interface java.util.SetSet.contains(Object)public java.util.Iterator iterator()
iterator in interface java.lang.Iterableiterator in interface java.util.Collectioniterator in interface java.util.SetSet.iterator()public java.lang.Object[] toArray()
toArray in interface java.util.CollectiontoArray in interface java.util.SetSet.toArray()public java.lang.Object[] toArray(java.lang.Object[] array)
toArray in interface java.util.CollectiontoArray in interface java.util.SetSet.toArray(Object[])public boolean add(java.lang.Object value)
add in interface java.util.Collectionadd in interface java.util.SetSet.add(Object)public boolean remove(java.lang.Object value)
remove in interface java.util.Collectionremove in interface java.util.SetSet.remove(Object)public boolean containsAll(java.util.Collection coll)
containsAll in interface java.util.CollectioncontainsAll in interface java.util.SetSet.containsAll(Collection)public boolean addAll(java.util.Collection coll)
addAll in interface java.util.CollectionaddAll in interface java.util.SetSet.addAll(Collection)public boolean retainAll(java.util.Collection coll)
retainAll in interface java.util.CollectionretainAll in interface java.util.SetSet.retainAll(Collection)public boolean removeAll(java.util.Collection coll)
removeAll in interface java.util.CollectionremoveAll in interface java.util.SetSet.removeAll(Collection)public void clear()
clear in interface java.util.Collectionclear in interface java.util.SetSet.clear()public java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.Object readFrom(java.sql.ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
java.lang.Object owner)
throws HibernateException,
java.sql.SQLException
PersistentCollectionreadFrom in interface PersistentCollectionHibernateExceptionjava.sql.SQLExceptionpublic void beginRead()
AbstractPersistentCollectionbeginRead in interface PersistentCollectionbeginRead in class AbstractPersistentCollectionpublic boolean endRead()
AbstractPersistentCollectionendRead in interface PersistentCollectionendRead in class AbstractPersistentCollectionpublic java.util.Iterator entries(CollectionPersister persister)
PersistentCollectionentries in interface PersistentCollectionpublic java.io.Serializable disassemble(CollectionPersister persister) throws HibernateException
PersistentCollectiondisassemble in interface PersistentCollectionHibernateExceptionpublic java.util.Iterator getDeletes(CollectionPersister persister, boolean indexIsFormula) throws HibernateException
PersistentCollectiongetDeletes in interface PersistentCollectionHibernateExceptionpublic boolean needsInserting(java.lang.Object entry,
int i,
Type elemType)
throws HibernateException
PersistentCollectionneedsInserting in interface PersistentCollectionHibernateExceptionpublic boolean needsUpdating(java.lang.Object entry,
int i,
Type elemType)
PersistentCollectionneedsUpdating in interface PersistentCollectionpublic boolean isRowUpdatePossible()
isRowUpdatePossible in interface PersistentCollectionisRowUpdatePossible in class AbstractPersistentCollectionpublic java.lang.Object getIndex(java.lang.Object entry,
int i,
CollectionPersister persister)
PersistentCollectiongetIndex in interface PersistentCollectionpersister - it was more elegant before we added this...public java.lang.Object getElement(java.lang.Object entry)
PersistentCollectiongetElement in interface PersistentCollectionpublic java.lang.Object getSnapshotElement(java.lang.Object entry,
int i)
PersistentCollectiongetSnapshotElement in interface PersistentCollectionpublic boolean equals(java.lang.Object other)
equals in interface java.util.Collectionequals in interface java.util.Setequals in class java.lang.Objectpublic int hashCode()
hashCode in interface java.util.CollectionhashCode in interface java.util.SethashCode in class java.lang.Objectpublic boolean entryExists(java.lang.Object key,
int i)
PersistentCollectionentryExists in interface PersistentCollectionpublic boolean isWrapper(java.lang.Object collection)
PersistentCollectionisWrapper in interface PersistentCollectionCopyright © 2013. All Rights Reserved.