|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap
org.jpox.sco.Map
public class Map
A mutable second-class Map object. Uses a "delegate" as a local store for the Map. Uses a "backing store" (SetStore) to represent the datastore. The "delegate" is updated with the "backing store" information at necessary intervals.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
java.util.Map.Entry<K,V> |
| Field Summary | |
|---|---|
protected MapStore |
backingStore
The "backing store" |
protected java.util.Map |
delegate
The internal "delegate". |
protected boolean |
isCacheLoaded
Status flag whether the map is loaded into the cache. |
protected static Localiser |
LOCALISER
|
protected boolean |
useCache
Whether to use "delegate" caching. |
| Constructor Summary | |
|---|---|
Map(StateManager ownerSM,
java.lang.String fieldName)
Constructor, using the StateManager of the "owner" and the field name. |
|
| Method Summary | |
|---|---|
protected void |
addQueuedOperation(QueuedOperation op)
Convenience method to add a queued operation to the operations we perform at commit. |
void |
attachCopy(java.lang.Object value)
Method to return an attached copy of the passed (detached) value. |
void |
clear()
Method to clear the Map. |
java.lang.Object |
clone()
Creates and returns a copy of this object. |
boolean |
containsKey(java.lang.Object key)
Utility to check if a key is contained in the Map. |
boolean |
containsValue(java.lang.Object value)
Utility to check if a value is contained in the Map. |
java.lang.Object |
detachCopy(FetchPlanState state)
Method to return a detached copy of the container. |
java.util.Set |
entrySet()
Accessor for the set of entries in the Map. |
boolean |
equals(java.lang.Object o)
Method to check the equality of this map, and another. |
void |
flush()
Method to flush the changes to the datastore when operating in queued mode. |
java.lang.Object |
get(java.lang.Object key)
Accessor for the value stored against a key. |
java.lang.String |
getFieldName()
Accessor for the field name. |
java.lang.Object |
getOwner()
Accessor for the owner. |
java.lang.Object |
getValue()
Accessor for the unwrapped value that we are wrapping. |
int |
hashCode()
Method to generate a hashcode for this Map. |
void |
initialise()
Method to initialise the SCO for use. |
void |
initialise(java.lang.Object o,
boolean forInsert,
boolean forUpdate)
Method to initialise the SCO from an existing value. |
boolean |
isEmpty()
Method to return if the Map is empty. |
java.util.Set |
keySet()
Accessor for the set of keys in the Map. |
void |
load()
Method to effect the load of the data in the SCO. |
protected void |
loadFromStore()
Method to load all elements from the "backing store" where appropriate. |
void |
makeDirty()
Utility to mark the object as dirty |
QueryExpression |
newQueryStatement()
Method to generate a QueryStatement for the SCO. |
QueryExpression |
newQueryStatement(java.lang.Class candidateClass,
DatastoreIdentifier candidateAlias)
Method to return a QueryStatement, using the specified candidate class. |
ResultObjectFactory |
newResultObjectFactory(QueryExpression stmt,
boolean ignoreCache,
java.lang.Class resultClass,
boolean useFetchPlan)
Method to return a new result object factory for processing of Query statements. |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Method to add a value to the Map. |
void |
putAll(java.util.Map m)
Method to add a Map of values to this map. |
java.lang.Object |
remove(java.lang.Object key)
Method to remove a value from the Map. |
int |
size()
Method to return the size of the Map. |
java.lang.String |
toString()
Method to return a string form of this Map. |
void |
unsetOwner()
Method to unset the owner and field information. |
void |
updateEmbeddedKey(java.lang.Object key,
int fieldNumber,
java.lang.Object newValue)
Method to update an embedded key in this map. |
void |
updateEmbeddedValue(java.lang.Object value,
int fieldNumber,
java.lang.Object newValue)
Method to update an embedded value in this map. |
java.util.Collection |
values()
Accessor for the set of values in the Map. |
protected java.lang.Object |
writeReplace()
The writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream. |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected static final Localiser LOCALISER
protected MapStore backingStore
protected java.util.Map delegate
protected boolean useCache
protected boolean isCacheLoaded
| Constructor Detail |
|---|
public Map(StateManager ownerSM,
java.lang.String fieldName)
ownerSM - The owner StateManagerfieldName - The name of the field of the SCO.| Method Detail |
|---|
public void initialise(java.lang.Object o,
boolean forInsert,
boolean forUpdate)
initialise in interface SCOo - The object to set fromforInsert - Whether the object needs inserting in the datastore with this valueforUpdate - Whether to update the datastore with this valuepublic void initialise()
initialise in interface SCOpublic java.lang.Object getValue()
getValue in interface SCOpublic void load()
load in interface SCOContainerprotected void loadFromStore()
public void flush()
flush in interface SCOContainerprotected void addQueuedOperation(QueuedOperation op)
op - The operation
public void updateEmbeddedKey(java.lang.Object key,
int fieldNumber,
java.lang.Object newValue)
updateEmbeddedKey in interface SCOMapkey - The keyfieldNumber - Number of field in the keynewValue - New value for this field
public void updateEmbeddedValue(java.lang.Object value,
int fieldNumber,
java.lang.Object newValue)
updateEmbeddedValue in interface SCOMapvalue - The valuefieldNumber - Number of field in the valuenewValue - New value for this fieldpublic java.lang.String getFieldName()
getFieldName in interface SCOpublic java.lang.Object getOwner()
getOwner in interface SCOpublic void unsetOwner()
unsetOwner in interface SCOpublic void makeDirty()
public java.lang.Object detachCopy(FetchPlanState state)
detachCopy in interface SCOstate - State for detachment process
public void attachCopy(java.lang.Object value)
attachCopy in interface SCOvalue - The new (map) valuepublic QueryExpression newQueryStatement()
newQueryStatement in interface Queryable
public QueryExpression newQueryStatement(java.lang.Class candidateClass,
DatastoreIdentifier candidateAlias)
newQueryStatement in interface QueryablecandidateClass - the candidate classcandidateAlias - Alias for the candidate
public ResultObjectFactory newResultObjectFactory(QueryExpression stmt,
boolean ignoreCache,
java.lang.Class resultClass,
boolean useFetchPlan)
newResultObjectFactory in interface Queryablestmt - The Query Statement.ignoreCache - Whether to ignore the cache.resultClass - Whether to create objects of a particular classuseFetchPlan - whether to use the fetch plan to retrieve fields in the same query
public java.lang.Object clone()
Mutable second-class Objects are required to provide a public clone method in order to allow for copying PersistenceCapable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.
clone in interface SCOclone in class java.util.AbstractMappublic boolean containsKey(java.lang.Object key)
containsKey in interface java.util.MapcontainsKey in class java.util.AbstractMapkey - The key to check
public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.MapcontainsValue in class java.util.AbstractMapvalue - The value to check
public java.util.Set entrySet()
entrySet in interface java.util.MapentrySet in class java.util.AbstractMappublic boolean equals(java.lang.Object o)
equals in interface java.util.Mapequals in class java.util.AbstractMapo - The map to compare against.
public java.lang.Object get(java.lang.Object key)
get in interface java.util.Mapget in class java.util.AbstractMapkey - The key
public int hashCode()
hashCode in interface java.util.MaphashCode in class java.util.AbstractMappublic boolean isEmpty()
isEmpty in interface java.util.MapisEmpty in interface QueryableisEmpty in class java.util.AbstractMappublic java.util.Set keySet()
keySet in interface java.util.MapkeySet in class java.util.AbstractMappublic int size()
size in interface java.util.Mapsize in class java.util.AbstractMappublic java.util.Collection values()
values in interface java.util.Mapvalues in class java.util.AbstractMappublic java.lang.String toString()
toString in class java.util.AbstractMappublic void clear()
clear in interface java.util.Mapclear in class java.util.AbstractMap
public java.lang.Object put(java.lang.Object key,
java.lang.Object value)
put in interface java.util.Mapput in class java.util.AbstractMapkey - The key for the value.value - The value
public void putAll(java.util.Map m)
putAll in interface java.util.MapputAll in class java.util.AbstractMapm - The Map to addpublic java.lang.Object remove(java.lang.Object key)
remove in interface java.util.Mapremove in class java.util.AbstractMapkey - The key for the value.
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException
java.io.ObjectStreamException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||