public class SortedMap extends AbstractMap implements SortedMap, SCOMap, Cloneable, Serializable
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| Modifier and Type | Field and Description |
|---|---|
protected TreeMap |
delegate
The internal "delegate".
|
protected static Localiser |
LOCALISER |
protected AbstractMemberMetaData |
ownerMmd |
protected ObjectProvider |
ownerOP |
| Constructor and Description |
|---|
SortedMap(ObjectProvider ownerOP,
AbstractMemberMetaData mmd)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
attachCopy(Object value)
Method to return an attached copy of the passed (detached) value.
|
void |
clear()
Method to clear the SortedMap.
|
Object |
clone()
Creates and returns a copy of this object.
|
Comparator |
comparator()
Accessor for the comparator.
|
boolean |
containsKey(Object key)
Method to return if the map contains this key
|
boolean |
containsValue(Object value)
Method to return if the map contains this value.
|
Object |
detachCopy(FetchPlanState state)
Method to return a detached copy of the container.
|
Set |
entrySet()
Accessor for the set of entries in the Map.
|
boolean |
equals(Object o)
Method to check the equality of this map, and another.
|
Object |
firstKey()
Accessor for the first key in the sorted map.
|
Object |
get(Object key)
Accessor for the value stored against a key.
|
String |
getFieldName()
Accessor for the field name that this SortedMap relates to.
|
Object |
getOwner()
Accessor for the owner that this SortedMap relates to.
|
Object |
getValue()
Accessor for the unwrapped value that we are wrapping.
|
int |
hashCode()
Method to generate a hashcode for this Map.
|
SortedMap |
headMap(Object toKey)
Method to retrieve the head of the map up to the specified key.
|
void |
initialise()
Method to initialise the SCO for use.
|
void |
initialise(Object o,
boolean forInsert,
boolean forUpdate)
Method to initialise the SCO from an existing value.
|
protected void |
initialiseDelegate()
Convenience method to set up the delegate respecting any comparator specified in MetaData.
|
boolean |
isEmpty()
Method to return if the Map is empty.
|
boolean |
isLoaded()
Method to return if the SCO has its contents loaded.
|
Set |
keySet()
Accessor for the set of keys in the Map.
|
Object |
lastKey()
Accessor for the last key in the sorted map.
|
void |
load()
Method to effect the load of the data in the SCO.
|
void |
makeDirty()
Utility to mark the object as dirty
|
Object |
put(Object key,
Object value)
Method to add a value against a key to the SortedMap.
|
void |
putAll(Map m)
Method to add the specified Map's values under their keys here.
|
Object |
remove(Object key)
Method to remove the value for a key from the SortedMap.
|
int |
size()
Method to return the size of the Map.
|
SortedMap |
subMap(Object fromKey,
Object toKey)
Method to retrieve the subset of the map between the specified keys.
|
SortedMap |
tailMap(Object fromKey)
Method to retrieve the part of the map after the specified key.
|
void |
unsetOwner()
Method to unset the owner and field details.
|
void |
updateEmbeddedKey(Object key,
int fieldNumber,
Object newValue)
Method to update an embedded key in this map.
|
void |
updateEmbeddedValue(Object value,
int fieldNumber,
Object newValue)
Method to update an embedded value in this map.
|
Collection |
values()
Accessor for the set of values in the Map.
|
protected Object |
writeReplace()
The writeReplace method is called when ObjectOutputStream is preparing
to write the object to the stream.
|
toStringprotected static final Localiser LOCALISER
protected transient ObjectProvider ownerOP
protected transient AbstractMemberMetaData ownerMmd
protected TreeMap delegate
public SortedMap(ObjectProvider ownerOP, AbstractMemberMetaData mmd)
ownerOP - the owner ObjectProvidermmd - Metadata for the memberpublic void initialise(Object o, boolean forInsert, boolean forUpdate)
initialise in interface SCOo - Object to set value using.forInsert - Whether the object needs inserting in the datastore with this valueforUpdate - Whether to update the datastore with this valuepublic void initialise()
initialise in interface SCOprotected void initialiseDelegate()
public Object getValue()
public void load()
load in interface SCOContainerpublic boolean isLoaded()
isLoaded in interface SCOContainerpublic void updateEmbeddedKey(Object key, int fieldNumber, Object newValue)
updateEmbeddedKey in interface SCOMapkey - The keyfieldNumber - Number of field in the keynewValue - New value for this fieldpublic void updateEmbeddedValue(Object value, int fieldNumber, Object newValue)
updateEmbeddedValue in interface SCOMapvalue - The valuefieldNumber - Number of field in the valuenewValue - New value for this fieldpublic String getFieldName()
getFieldName in interface SCOpublic Object getOwner()
public void unsetOwner()
unsetOwner in interface SCOpublic void makeDirty()
public Object detachCopy(FetchPlanState state)
detachCopy in interface SCOstate - State for detachment statepublic void attachCopy(Object value)
attachCopy in interface SCOvalue - The new (map) valuepublic 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 AbstractMappublic Comparator comparator()
comparator in interface SortedMappublic boolean containsKey(Object key)
containsKey in interface MapcontainsKey in class AbstractMapkey - The keypublic boolean containsValue(Object value)
containsValue in interface MapcontainsValue in class AbstractMapvalue - The valuepublic Set entrySet()
public boolean equals(Object o)
equals in interface Mapequals in class AbstractMapo - The map to compare against.public Object firstKey()
public Object lastKey()
public SortedMap headMap(Object toKey)
public SortedMap subMap(Object fromKey, Object toKey)
public SortedMap tailMap(Object fromKey)
public Object get(Object key)
get in interface Mapget in class AbstractMapkey - The keypublic int hashCode()
hashCode in interface MaphashCode in class AbstractMappublic boolean isEmpty()
isEmpty in interface MapisEmpty in class AbstractMappublic Set keySet()
public int size()
size in interface Mapsize in class AbstractMappublic Collection values()
public void clear()
clear in interface Mapclear in class AbstractMappublic Object put(Object key, Object value)
put in interface Mapput in class AbstractMapkey - The keyvalue - The valuepublic void putAll(Map m)
putAll in interface MapputAll in class AbstractMapm - The mappublic Object remove(Object key)
remove in interface Mapremove in class AbstractMapkey - The key to removeprotected Object writeReplace() throws ObjectStreamException
ObjectStreamExceptionCopyright © 2013. All Rights Reserved.