|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.hibernate.collection.AbstractPersistentCollection
org.hibernate.collection.PersistentList
A persistent wrapper for a java.util.List. Underlying collection is an ArrayList.
ArrayList,
Serialized Form| Nested Class Summary |
| Nested classes inherited from class org.hibernate.collection.AbstractPersistentCollection |
AbstractPersistentCollection.DelayedOperation |
| Field Summary | |
protected List |
list
|
| Fields inherited from class org.hibernate.collection.AbstractPersistentCollection |
UNKNOWN |
| Constructor Summary | |
PersistentList()
|
|
PersistentList(SessionImplementor session)
|
|
PersistentList(SessionImplementor session,
List list)
|
|
| Method Summary | |
void |
add(int index,
Object value)
|
boolean |
add(Object object)
|
boolean |
addAll(Collection values)
|
boolean |
addAll(int index,
Collection coll)
|
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 coll)
|
Serializable |
disassemble(CollectionPersister persister)
Disassemble the collection, ready for the cache |
boolean |
empty()
Is the initialized collection empty? |
Iterator |
entries(CollectionPersister persister)
Iterate all collection entries, during update of the database |
boolean |
entryExists(Object entry,
int i)
Does an element exist at this entry in the collection? |
boolean |
equals(Object other)
|
boolean |
equalsSnapshot(CollectionPersister persister)
Does the current state exactly match the snapshot? |
Object |
get(int index)
|
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 value)
|
void |
initializeFromCache(CollectionPersister persister,
Serializable disassembled,
Object owner)
Read the state of the collection from a disassembled cached value |
boolean |
isEmpty()
|
boolean |
isSnapshotEmpty(Serializable snapshot)
Is the snapshot empty? |
boolean |
isWrapper(Object collection)
Is this the wrapper for the given underlying collection instance? |
Iterator |
iterator()
|
int |
lastIndexOf(Object value)
|
ListIterator |
listIterator()
|
ListIterator |
listIterator(int index)
|
boolean |
needsInserting(Object entry,
int i,
Type elemType)
Do we need to insert this element? |
boolean |
needsUpdating(Object entry,
int i,
Type elemType)
Do we need to update this element? |
Object |
readFrom(ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
Object owner)
Read a row from the JDBC result set |
Object |
remove(int index)
|
boolean |
remove(Object value)
|
boolean |
removeAll(Collection coll)
|
boolean |
retainAll(Collection coll)
|
Object |
set(int index,
Object value)
|
int |
size()
|
List |
subList(int from,
int to)
|
Object[] |
toArray()
|
Object[] |
toArray(Object[] array)
|
String |
toString()
|
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
protected List list
| Constructor Detail |
public PersistentList(SessionImplementor session)
public PersistentList(SessionImplementor session, List list)
public PersistentList()
| Method Detail |
public Serializable getSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollection
getSnapshot in interface PersistentCollectionHibernateExceptionpublic Collection getOrphans(Serializable snapshot, String entityName) throws HibernateException
AbstractPersistentCollection
getOrphans in interface PersistentCollectiongetOrphans in class AbstractPersistentCollectionHibernateExceptionpublic boolean equalsSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollection
equalsSnapshot in interface PersistentCollectionHibernateExceptionpublic boolean isSnapshotEmpty(Serializable snapshot)
PersistentCollection
isSnapshotEmpty in interface PersistentCollectionpublic void beforeInitialize(CollectionPersister persister, int anticipatedSize)
PersistentCollection
beforeInitialize in interface PersistentCollectionpersister - The underlying collection persister.anticipatedSize - The anticipated size of the collection after initilization is complete.public boolean isWrapper(Object collection)
PersistentCollection
isWrapper in interface PersistentCollectionpublic int size()
List.size()public boolean isEmpty()
List.isEmpty()public boolean contains(Object object)
List.contains(Object)public Iterator iterator()
List.iterator()public Object[] toArray()
List.toArray()public Object[] toArray(Object[] array)
List.toArray(Object[])public boolean add(Object object)
List.add(Object)public boolean remove(Object value)
List.remove(Object)public boolean containsAll(Collection coll)
containsAll in interface ListList.containsAll(Collection)public boolean addAll(Collection values)
List.addAll(Collection)
public boolean addAll(int index,
Collection coll)
List.addAll(int, Collection)public boolean removeAll(Collection coll)
List.removeAll(Collection)public boolean retainAll(Collection coll)
List.retainAll(Collection)public void clear()
List.clear()public Object get(int index)
List.get(int)public Object set(int index, Object value)
List.set(int, Object)
public void add(int index,
Object value)
List.add(int, Object)public Object remove(int index)
List.remove(int)public int indexOf(Object value)
List.indexOf(Object)public int lastIndexOf(Object value)
lastIndexOf in interface ListList.lastIndexOf(Object)public ListIterator listIterator()
listIterator in interface ListList.listIterator()public ListIterator listIterator(int index)
listIterator in interface ListList.listIterator(int)public List subList(int from, int to)
List.subList(int, int)public boolean empty()
AbstractPersistentCollection
empty in interface PersistentCollectionempty in class AbstractPersistentCollectionpublic String toString()
public Object readFrom(ResultSet rs, CollectionPersister persister, CollectionAliases descriptor, Object owner) throws HibernateException, SQLException
PersistentCollection
readFrom in interface PersistentCollectionHibernateException
SQLExceptionpublic Iterator entries(CollectionPersister persister)
PersistentCollection
entries in interface PersistentCollectionpublic void initializeFromCache(CollectionPersister persister, Serializable disassembled, Object owner) throws HibernateException
PersistentCollection
initializeFromCache in interface PersistentCollectionHibernateExceptionpublic Serializable disassemble(CollectionPersister persister) throws HibernateException
PersistentCollection
disassemble in interface PersistentCollectionHibernateExceptionpublic Iterator getDeletes(CollectionPersister persister, boolean indexIsFormula) throws HibernateException
PersistentCollection
getDeletes in interface PersistentCollectionHibernateExceptionpublic boolean needsInserting(Object entry, int i, Type elemType) throws HibernateException
PersistentCollection
needsInserting in interface PersistentCollectionHibernateExceptionpublic boolean needsUpdating(Object entry, int i, Type elemType) throws HibernateException
PersistentCollection
needsUpdating in interface PersistentCollectionHibernateExceptionpublic Object getIndex(Object entry, int i, CollectionPersister persister)
PersistentCollection
getIndex in interface PersistentCollectionpersister - it was more elegant before we added this...public Object getElement(Object entry)
PersistentCollection
getElement in interface PersistentCollectionpublic Object getSnapshotElement(Object entry, int i)
PersistentCollection
getSnapshotElement in interface PersistentCollectionpublic boolean equals(Object other)
public int hashCode()
public boolean entryExists(Object entry, int i)
PersistentCollection
entryExists in interface PersistentCollection
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||