public class Properties extends Properties implements BackedSCO
String.| Modifier and Type | Field and Description |
|---|---|
protected boolean |
allowNulls |
protected MapStore |
backingStore |
protected boolean |
isCacheLoaded |
protected boolean |
useCache |
delegate, ownerMmd, ownerOPdefaults| Constructor and Description |
|---|
Properties(ObjectProvider op,
AbstractMemberMetaData mmd)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Method to clear the Hashtable
|
Object |
clone()
Creates and returns a copy of this object.
|
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.
|
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 |
get(Object key)
Accessor for the value stored against a key.
|
Store |
getBackingStore() |
String |
getProperty(String key)
Accessor for the string value stored against a string key.
|
Properties |
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(Properties m)
Method to initialise the SCO from an existing value.
|
void |
initialise(Properties newValue,
Object oldValue)
Method to initialise the SCO for use, where replacing an old value with a new value such as when calling a setter field
passing in a new value.
|
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.
|
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.
|
Object |
put(Object key,
Object value)
Method to add a value against a key to the Hashtable
|
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 Hashtable
|
Object |
setProperty(String key,
String value)
Method to add a string value against a string key to the Hashtable
|
int |
size()
Method to return the size of the Map.
|
void |
unsetOwner()
Method to unset the owner and field details.
|
void |
updateEmbeddedKey(Object key,
int fieldNumber,
Object newValue,
boolean makeDirty)
Method to update an embedded key in this map.
|
void |
updateEmbeddedValue(Object value,
int fieldNumber,
Object newValue,
boolean makeDirty)
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.
|
attachCopy, detachCopy, getFieldName, getOwner, makeDirty, setValuegetProperty, list, list, load, load, loadFromXML, propertyNames, save, store, store, storeToXML, storeToXML, stringPropertyNamescompute, computeIfAbsent, computeIfPresent, contains, elements, forEach, getOrDefault, keys, merge, putIfAbsent, rehash, remove, replace, replace, replaceAll, toStringprotected transient MapStore backingStore
protected transient boolean allowNulls
protected transient boolean useCache
protected transient boolean isCacheLoaded
public Properties(ObjectProvider op, AbstractMemberMetaData mmd)
op - the owner of this Mapmmd - Metadata for the memberpublic void initialise(Properties newValue, Object oldValue)
SCOinitialise in interface SCO<Properties>initialise in class PropertiesnewValue - New value (to wrap)oldValue - Old value (to use in deciding what needs deleting etc)public void initialise(Properties m)
initialise in interface SCO<Properties>initialise in class Propertiesm - Object to set value using.public void initialise()
initialise in interface SCO<Properties>initialise in class Propertiespublic Properties getValue()
getValue in interface SCO<Properties>getValue in class Propertiespublic void load()
load in interface SCOContainer<Properties>load in class Propertiespublic boolean isLoaded()
isLoaded in interface SCOContainer<Properties>isLoaded in class Propertiesprotected void loadFromStore()
public Store getBackingStore()
getBackingStore in interface BackedSCOpublic void updateEmbeddedKey(Object key, int fieldNumber, Object newValue, boolean makeDirty)
updateEmbeddedKey in interface SCOMap<Properties,Object,Object>updateEmbeddedKey in class Propertieskey - The keyfieldNumber - Number of field in the keynewValue - New value for this fieldmakeDirty - Whether to make the SCO field dirty.public void updateEmbeddedValue(Object value, int fieldNumber, Object newValue, boolean makeDirty)
updateEmbeddedValue in interface SCOMap<Properties,Object,Object>updateEmbeddedValue in class Propertiesvalue - The valuefieldNumber - Number of field in the valuenewValue - New value for this fieldmakeDirty - Whether to make the SCO field dirty.public void unsetOwner()
unsetOwner in interface SCO<Properties>unsetOwner in class Propertiespublic Object clone()
Mutable second-class Objects are required to provide a public clone method in order to allow for copying persistable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.
clone in interface SCO<Properties>clone in class Propertiespublic boolean containsKey(Object key)
containsKey in interface Map<Object,Object>containsKey in class Propertieskey - The keypublic boolean containsValue(Object value)
containsValue in interface Map<Object,Object>containsValue in class Propertiesvalue - The valuepublic Set entrySet()
public boolean equals(Object o)
public String getProperty(String key)
getProperty in class Propertieskey - The keypublic int hashCode()
public boolean isEmpty()
public Set keySet()
public int size()
public Collection values()
public void clear()
public Object put(Object key, Object value)
public void putAll(Map m)
public Object setProperty(String key, String value)
setProperty in class Propertieskey - The keyvalue - The valueprotected Object writeReplace() throws ObjectStreamException
writeReplace in class PropertiesObjectStreamException - if an error occursCopyright © 2016. All rights reserved.