|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.Dictionary<K,V>
java.util.Hashtable<Object,Object>
java.util.Properties
org.datanucleus.store.types.sco.simple.Properties
public class Properties
A mutable second-class Properties object. This is the simplified form that intercepts mutators and marks the field as dirty. It also handles cascade-delete triggering for persistable elements.
| Field Summary | |
|---|---|
protected Properties |
delegate
The internal "delegate". |
protected String |
fieldName
|
protected int |
fieldNumber
|
protected static Localiser |
LOCALISER
|
protected ObjectProvider |
ownerSM
|
| Fields inherited from class java.util.Properties |
|---|
defaults |
| Constructor Summary | |
|---|---|
Properties(ObjectProvider ownerSM,
String fieldName)
Constructor |
|
| Method Summary | |
|---|---|
void |
attachCopy(Object value)
Method to return an attached copy of the passed (detached) value. |
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. |
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. |
void |
flush()
Method to flush the changes to the datastore when operating in queued mode. |
Object |
get(Object key)
Accessor for the value stored against a key. |
String |
getFieldName()
Accessor for the field name that this Hashtable relates to. |
Object |
getOwner()
Accessor for the owner that this Hashtable relates to. |
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(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. |
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. |
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 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)
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. |
| Methods inherited from class java.util.Properties |
|---|
getProperty, getProperty, list, list, load, load, loadFromXML, propertyNames, save, store, store, storeToXML, storeToXML, stringPropertyNames |
| Methods inherited from class java.util.Hashtable |
|---|
contains, elements, keys, rehash, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected static final Localiser LOCALISER
protected transient ObjectProvider ownerSM
protected transient String fieldName
protected transient int fieldNumber
protected Properties delegate
| Constructor Detail |
|---|
public Properties(ObjectProvider ownerSM,
String fieldName)
ownerSM - the owner of this MapfieldName - the declared field name| Method Detail |
|---|
public 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 SCOpublic Object getValue()
getValue in interface SCOpublic void load()
load in interface SCOContainerpublic boolean isLoaded()
isLoaded in interface SCOContainerpublic void flush()
flush in interface SCOContainer
public void updateEmbeddedKey(Object key,
int fieldNumber,
Object newValue)
updateEmbeddedKey in interface SCOMapkey - The keyfieldNumber - Number of field in the keynewValue - New value for this field
public 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()
getOwner in interface SCOpublic void unsetOwner()
unsetOwner in interface SCOpublic void makeDirty()
public Object detachCopy(FetchPlanState state)
detachCopy in interface SCOstate - State for detachment process
public 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 Hashtable<Object,Object>public boolean containsKey(Object key)
containsKey in interface Map<Object,Object>containsKey in class Hashtable<Object,Object>key - The key
public boolean containsValue(Object value)
containsValue in interface Map<Object,Object>containsValue in class Hashtable<Object,Object>value - The value
public Set entrySet()
entrySet in interface Map<Object,Object>entrySet in class Hashtable<Object,Object>public boolean equals(Object o)
equals in interface Map<Object,Object>equals in class Hashtable<Object,Object>o - The map to compare against.
public Object get(Object key)
get in interface Map<Object,Object>get in class Hashtable<Object,Object>key - The key
public int hashCode()
hashCode in interface Map<Object,Object>hashCode in class Hashtable<Object,Object>public boolean isEmpty()
isEmpty in interface Map<Object,Object>isEmpty in class Hashtable<Object,Object>public Set keySet()
keySet in interface Map<Object,Object>keySet in class Hashtable<Object,Object>public int size()
size in interface Map<Object,Object>size in class Hashtable<Object,Object>public Collection values()
values in interface Map<Object,Object>values in class Hashtable<Object,Object>public void clear()
clear in interface Map<Object,Object>clear in class Hashtable<Object,Object>
public Object put(Object key,
Object value)
put in interface Map<Object,Object>put in class Hashtable<Object,Object>key - The keyvalue - The value
public void putAll(Map m)
putAll in interface Map<Object,Object>putAll in class Hashtable<Object,Object>m - The mappublic Object remove(Object key)
remove in interface Map<Object,Object>remove in class Hashtable<Object,Object>key - The key to remove
public Object setProperty(String key,
String value)
setProperty in class Propertieskey - The keyvalue - The value
protected Object writeReplace()
throws ObjectStreamException
ObjectStreamException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||