|
Oracle® Coherence Java API Reference Release 3.7.1.0 E22843-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
com.tangosol.util.Base
com.tangosol.util.InvocableMapHelper.SimpleEntry
public static class InvocableMapHelper.SimpleEntry
Simple implementation of the InvocableMap.Entry interface. This assumes that the underlying Map content does not change while a reference to the SimpleEntry is alive and may cache the entry's value to avoid an extra map lookup.
| Field Summary | |
|---|---|
protected java.util.Map |
m_mapThe map. |
| Constructor Summary | |
|---|---|
InvocableMapHelper.SimpleEntry(java.util.Map map, java.lang.Object oKey, boolean fReadOnly)Construct a SimpleEntry for a given map and a key. |
|
InvocableMapHelper.SimpleEntry(java.lang.Object oKey, java.lang.Object oValue)Construct a SimpleEntry for a given key and value. |
|
| Method Summary | |
|---|---|
protected void |
checkMutable()Verify that this SimpleEntry is mutable. |
boolean |
equals(java.lang.Object o)Compare this SimpleEntry with another object for equality. |
java.lang.Object |
extract(ValueExtractor extractor)Extract a value out of the Entry's value. |
java.lang.Object |
getKey()Return the key corresponding to this entry. |
java.lang.Object |
getValue()Return the value corresponding to this entry. |
int |
hashCode()Return a hash code value for the SimpleEntry object. |
boolean |
isPresent()Determine if this Entry exists in the Map. |
void |
remove(boolean fSynthetic)Remove this Entry from the Map if it is present in the Map. |
java.lang.Object |
setValue(java.lang.Object oValue)Store the value corresponding to this entry. |
void |
setValue(java.lang.Object oValue, boolean fSynthetic)Store the value corresponding to this entry. |
java.lang.String |
toString()Provide a human-readable representation of the SimpleEntry object. |
void |
update(ValueUpdater updater, java.lang.Object oValue)Update the Entry's value. |
| Field Detail |
|---|
protected java.util.Map m_map
| Constructor Detail |
|---|
public InvocableMapHelper.SimpleEntry(java.util.Map map,
java.lang.Object oKey,
boolean fReadOnly)
map - the parent Map for this entryoKey - the entry's keyfReadOnly - if true, the entry will be marked as read-only, preventing the setValue() and remove() methods from modifying the underlying map's content
public InvocableMapHelper.SimpleEntry(java.lang.Object oKey,
java.lang.Object oValue)
oKey - the entry's keyoValue - the entry's value| Method Detail |
|---|
public java.lang.Object getKey()
InvocableMap.Entry.isPresent(), and to create the entry for the key, use InvocableMap.Entry.setValue(java.lang.Object).getKey in interface InvocableMap.EntrygetKey in interface java.util.Map.Entrypublic java.lang.Object getValue()
InvocableMap.Entry.isPresent().
Note: any modifications to the value retrieved using this method are not guaranteed to persist unless followed by a InvocableMap.Entry.setValue(java.lang.Object) or InvocableMap.Entry.update(com.tangosol.util.ValueUpdater, java.lang.Object) call.
getValue in interface InvocableMap.EntrygetValue in interface java.util.Map.Entrypublic java.lang.Object setValue(java.lang.Object oValue)
setValue in interface InvocableMap.EntrysetValue in interface java.util.Map.EntryoValue - the new value for this Entry
public void setValue(java.lang.Object oValue,
boolean fSynthetic)
Unlike the other form of setValue, this form does not return the previous value, and as a result may be significantly less expensive (in terms of cost of execution) for certain Map implementations.
setValue in interface InvocableMap.EntryoValue - the new value for this EntryfSynthetic - pass true only if the insertion into or modification of the Map should be treated as a synthetic eventpublic java.lang.Object extract(ValueExtractor extractor)
extract in interface QueryMap.Entryextractor - a ValueExtractor to apply to the Entry's value
public void update(ValueUpdater updater,
java.lang.Object oValue)
Object oTarget = entry.getValue(); updater.update(oTarget, oValue); entry.setValue(oTarget, false);The benefit of using this method is that it may allow the Entry implementation to significantly optimize the operation, such as for purposes of delta updates and backup maintenance.
update in interface InvocableMap.Entryupdater - a ValueUpdater used to modify the Entry's valueoValue - the new value for this Entrypublic boolean isPresent()
InvocableMap.Entry.setValue(Object) or InvocableMap.Entry.setValue(Object, boolean). If the Entry is present, it can be destroyed by calling InvocableMap.Entry.remove(boolean).isPresent in interface InvocableMap.Entrypublic void remove(boolean fSynthetic)
This method supports both the operation corresponding to Map.remove(java.lang.Object) as well as synthetic operations such as eviction. If the containing Map does not differentiate between the two, then this method will always be identical to InvocableMap.this.remove(getKey()).
remove in interface InvocableMap.EntryfSynthetic - pass true only if the removal from the Map should be treated as a synthetic eventpublic boolean equals(java.lang.Object o)
equals in interface java.util.Map.Entryo - an object reference or nullpublic int hashCode()
hashCode in interface java.util.Map.EntryObject.hashCode(), Object.equals(Object), Map.Entry.equals(Object)public java.lang.String toString()
protected void checkMutable()
|
Oracle® Coherence Java API Reference Release 3.7.1.0 E22843-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||