|
||||||||||
| 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.PersistentMap
public class PersistentMap
A persistent wrapper for a java.util.Map. Underlying collection is a HashMap.
HashMap,
Serialized Form| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.hibernate.collection.AbstractPersistentCollection |
|---|
AbstractPersistentCollection.DelayedOperation |
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
java.util.Map.Entry<K,V> |
| Field Summary | |
|---|---|
protected java.util.Map |
map
|
| Fields inherited from class org.hibernate.collection.AbstractPersistentCollection |
|---|
UNKNOWN |
| Constructor Summary | |
|---|---|
PersistentMap()
Empty constructor. |
|
PersistentMap(SessionImplementor session)
Instantiates a lazy map (the underlying map is un-initialized). |
|
PersistentMap(SessionImplementor session,
java.util.Map map)
Instantiates a non-lazy map (the underlying map is constructed from the incoming map reference). |
|
| Method Summary | |
|---|---|
void |
beforeInitialize(CollectionPersister persister,
int anticipatedSize)
Called before any elements are read into the collection, allowing appropriate initializations to occur. |
void |
clear()
|
boolean |
containsKey(java.lang.Object key)
|
boolean |
containsValue(java.lang.Object value)
|
java.io.Serializable |
disassemble(CollectionPersister persister)
Disassemble the collection, ready for the cache |
boolean |
empty()
Is the initialized collection empty? |
java.util.Iterator |
entries(CollectionPersister persister)
Iterate all collection entries, during update of the database |
boolean |
entryExists(java.lang.Object entry,
int i)
Does an element exist at this entry in the collection? |
java.util.Set |
entrySet()
|
boolean |
equals(java.lang.Object other)
|
boolean |
equalsSnapshot(CollectionPersister persister)
Does the current state exactly match the snapshot? |
java.lang.Object |
get(java.lang.Object key)
|
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 |
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.Set |
keySet()
|
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 |
put(java.lang.Object key,
java.lang.Object value)
|
void |
putAll(java.util.Map puts)
|
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(java.lang.Object key)
|
int |
size()
|
java.lang.String |
toString()
|
java.util.Collection |
values()
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected java.util.Map map
| Constructor Detail |
|---|
public PersistentMap()
public PersistentMap(SessionImplementor session)
session - The session to which this map will belong.
public PersistentMap(SessionImplementor session,
java.util.Map map)
session - The session to which this map will belong.map - The underlying map data.| Method Detail |
|---|
public java.io.Serializable getSnapshot(CollectionPersister persister)
throws HibernateException
PersistentCollection
getSnapshot in interface PersistentCollectionHibernateException
public java.util.Collection getOrphans(java.io.Serializable snapshot,
java.lang.String entityName)
throws HibernateException
AbstractPersistentCollection
getOrphans in interface PersistentCollectiongetOrphans in class AbstractPersistentCollectionHibernateException
public boolean equalsSnapshot(CollectionPersister persister)
throws HibernateException
PersistentCollection
equalsSnapshot in interface PersistentCollectionHibernateExceptionpublic boolean isSnapshotEmpty(java.io.Serializable snapshot)
PersistentCollection
isSnapshotEmpty in interface PersistentCollectionpublic boolean isWrapper(java.lang.Object collection)
PersistentCollection
isWrapper in interface PersistentCollection
public 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 int size()
size in interface java.util.MapMap.size()public boolean isEmpty()
isEmpty in interface java.util.MapMap.isEmpty()public boolean containsKey(java.lang.Object key)
containsKey in interface java.util.MapMap.containsKey(Object)public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.MapMap.containsValue(Object)public java.lang.Object get(java.lang.Object key)
get in interface java.util.MapMap.get(Object)
public java.lang.Object put(java.lang.Object key,
java.lang.Object value)
put in interface java.util.MapMap.put(Object, Object)public java.lang.Object remove(java.lang.Object key)
remove in interface java.util.MapMap.remove(Object)public void putAll(java.util.Map puts)
putAll in interface java.util.MapMap.putAll(java.util.Map puts)public void clear()
clear in interface java.util.MapMap.clear()public java.util.Set keySet()
keySet in interface java.util.MapMap.keySet()public java.util.Collection values()
values in interface java.util.MapMap.values()public java.util.Set entrySet()
entrySet in interface java.util.MapMap.entrySet()public boolean empty()
AbstractPersistentCollection
empty in interface PersistentCollectionempty in class AbstractPersistentCollectionpublic java.lang.String toString()
toString in class java.lang.Object
public java.lang.Object readFrom(java.sql.ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
java.lang.Object owner)
throws HibernateException,
java.sql.SQLException
PersistentCollection
readFrom in interface PersistentCollectionHibernateException
java.sql.SQLExceptionpublic java.util.Iterator entries(CollectionPersister persister)
PersistentCollection
entries in interface PersistentCollection
public void initializeFromCache(CollectionPersister persister,
java.io.Serializable disassembled,
java.lang.Object owner)
throws HibernateException
PersistentCollection
initializeFromCache in interface PersistentCollectionHibernateException
public java.io.Serializable disassemble(CollectionPersister persister)
throws HibernateException
PersistentCollection
disassemble in interface PersistentCollectionHibernateException
public java.util.Iterator getDeletes(CollectionPersister persister,
boolean indexIsFormula)
throws HibernateException
PersistentCollection
getDeletes in interface PersistentCollectionHibernateException
public boolean needsInserting(java.lang.Object entry,
int i,
Type elemType)
throws HibernateException
PersistentCollection
needsInserting in interface PersistentCollectionHibernateException
public boolean needsUpdating(java.lang.Object entry,
int i,
Type elemType)
throws HibernateException
PersistentCollection
needsUpdating in interface PersistentCollectionHibernateException
public java.lang.Object getIndex(java.lang.Object entry,
int i,
CollectionPersister persister)
PersistentCollection
getIndex in interface PersistentCollectionpersister - it was more elegant before we added this...public java.lang.Object getElement(java.lang.Object entry)
PersistentCollection
getElement in interface PersistentCollection
public java.lang.Object getSnapshotElement(java.lang.Object entry,
int i)
PersistentCollection
getSnapshotElement in interface PersistentCollectionpublic boolean equals(java.lang.Object other)
equals in interface java.util.Mapequals in class java.lang.Objectpublic int hashCode()
hashCode in interface java.util.MaphashCode in class java.lang.Object
public boolean entryExists(java.lang.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 | |||||||||