|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hibernate.collection.AbstractPersistentCollection org.hibernate.collection.PersistentMap
A persistent wrapper for a java.util.Map. Underlying collection is a HashMap.
HashMap
,
Serialized FormNested Class Summary |
Nested classes inherited from class org.hibernate.collection.AbstractPersistentCollection |
AbstractPersistentCollection.DelayedOperation |
Nested classes inherited from class java.util.Map |
Map.Entry |
Field Summary | |
protected 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,
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(Object key)
|
boolean |
containsValue(Object value)
|
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? |
Set |
entrySet()
|
boolean |
equals(Object other)
|
boolean |
equalsSnapshot(CollectionPersister persister)
Does the current state exactly match the snapshot? |
Object |
get(Object key)
|
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()
|
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? |
Set |
keySet()
|
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 |
put(Object key,
Object value)
|
void |
putAll(Map puts)
|
Object |
readFrom(ResultSet rs,
CollectionPersister persister,
CollectionAliases descriptor,
Object owner)
Read a row from the JDBC result set |
Object |
remove(Object key)
|
int |
size()
|
String |
toString()
|
Collection |
values()
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
protected Map map
Constructor Detail |
public PersistentMap()
public PersistentMap(SessionImplementor session)
session
- The session to which this map will belong.public PersistentMap(SessionImplementor session, Map map)
session
- The session to which this map will belong.map
- The underlying map data.Method Detail |
public Serializable getSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollection
getSnapshot
in interface PersistentCollection
HibernateException
public Collection getOrphans(Serializable snapshot, String entityName) throws HibernateException
AbstractPersistentCollection
getOrphans
in interface PersistentCollection
getOrphans
in class AbstractPersistentCollection
HibernateException
public boolean equalsSnapshot(CollectionPersister persister) throws HibernateException
PersistentCollection
equalsSnapshot
in interface PersistentCollection
HibernateException
public boolean isSnapshotEmpty(Serializable snapshot)
PersistentCollection
isSnapshotEmpty
in interface PersistentCollection
public boolean isWrapper(Object collection)
PersistentCollection
isWrapper
in interface PersistentCollection
public void beforeInitialize(CollectionPersister persister, int anticipatedSize)
PersistentCollection
beforeInitialize
in interface PersistentCollection
persister
- The underlying collection persister.anticipatedSize
- The anticipated size of the collection after initilization is complete.public int size()
Map.size()
public boolean isEmpty()
Map.isEmpty()
public boolean containsKey(Object key)
containsKey
in interface Map
Map.containsKey(Object)
public boolean containsValue(Object value)
containsValue
in interface Map
Map.containsValue(Object)
public Object get(Object key)
Map.get(Object)
public Object put(Object key, Object value)
Map.put(Object, Object)
public Object remove(Object key)
Map.remove(Object)
public void putAll(Map puts)
Map.putAll(java.util.Map puts)
public void clear()
Map.clear()
public Set keySet()
Map.keySet()
public Collection values()
Map.values()
public Set entrySet()
Map.entrySet()
public boolean empty()
AbstractPersistentCollection
empty
in interface PersistentCollection
empty
in class AbstractPersistentCollection
public String toString()
public Object readFrom(ResultSet rs, CollectionPersister persister, CollectionAliases descriptor, Object owner) throws HibernateException, SQLException
PersistentCollection
readFrom
in interface PersistentCollection
HibernateException
SQLException
public Iterator entries(CollectionPersister persister)
PersistentCollection
entries
in interface PersistentCollection
public void initializeFromCache(CollectionPersister persister, Serializable disassembled, Object owner) throws HibernateException
PersistentCollection
initializeFromCache
in interface PersistentCollection
HibernateException
public Serializable disassemble(CollectionPersister persister) throws HibernateException
PersistentCollection
disassemble
in interface PersistentCollection
HibernateException
public Iterator getDeletes(CollectionPersister persister, boolean indexIsFormula) throws HibernateException
PersistentCollection
getDeletes
in interface PersistentCollection
HibernateException
public boolean needsInserting(Object entry, int i, Type elemType) throws HibernateException
PersistentCollection
needsInserting
in interface PersistentCollection
HibernateException
public boolean needsUpdating(Object entry, int i, Type elemType) throws HibernateException
PersistentCollection
needsUpdating
in interface PersistentCollection
HibernateException
public Object getIndex(Object entry, int i, CollectionPersister persister)
PersistentCollection
getIndex
in interface PersistentCollection
persister
- it was more elegant before we added this...public Object getElement(Object entry)
PersistentCollection
getElement
in interface PersistentCollection
public Object getSnapshotElement(Object entry, int i)
PersistentCollection
getSnapshotElement
in interface PersistentCollection
public 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 |