Interface Preferences
-
public interface PreferencesA node in a hierarchical collection of preference data.This interface allows applications to store and retrieve user and system preference data. This data is stored persistently in an implementation-dependent backing store. Typical implementations include flat files, OS-specific registries, directory servers and SQL databases.
For each bundle, there is a separate tree of nodes for each user, and one for system preferences. The precise description of "user" and "system" will vary from one bundle to another. Typical information stored in the user preference tree might include font choice, and color choice for a bundle which interacts with the user via a servlet. Typical information stored in the system preference tree might include installation data, or things like high score information for a game program.
Nodes in a preference tree are named in a similar fashion to directories in a hierarchical file system. Every node in a preference tree has a node name (which is not necessarily unique), a unique absolute path name , and a path name relative to each ancestor including itself.
The root node has a node name of the empty
Stringobject (""). Every other node has an arbitrary node name, specified at the time it is created. The only restrictions on this name are that it cannot be the empty string, and it cannot contain the slash character ('/').The root node has an absolute path name of
"/". Children of the root node have absolute path names of"/" +<node name> . All other nodes have absolute path names of <parent's absolute path name>+ "/" +<node name> . Note that all absolute path names begin with the slash character.A node n 's path name relative to its ancestor a is simply the string that must be appended to a 's absolute path name in order to form n 's absolute path name, with the initial slash character (if present) removed. Note that:
- No relative path names begin with the slash character.
- Every node's path name relative to itself is the empty string.
- Every node's path name relative to its parent is its node name (except for the root node, which does not have a parent).
- Every node's path name relative to the root is its absolute path name with the initial slash character removed.
Note finally that:
- No path name contains multiple consecutive slash characters.
- No path name with the exception of the root's absolute path name end in the slash character.
- Any string that conforms to these two rules is a valid path name.
Each
Preferencenode has zero or more properties associated with it, where a property consists of a name and a value. The bundle writer is free to choose any appropriate names for properties. Their values can be of typeString,long,int,boolean,byte[],float, ordoublebut they can always be accessed as if they wereStringobjects.All node name and property name comparisons are case-sensitive.
All of the methods that modify preference data are permitted to operate asynchronously; they may return immediately, and changes will eventually propagate to the persistent backing store, with an implementation-dependent delay. The
flushmethod may be used to synchronously force updates to the backing store.Implementations must automatically attempt to flush to the backing store any pending updates for a bundle's preferences when the bundle is stopped or otherwise ungets the Preferences Service.
The methods in this class may be invoked concurrently by multiple threads in a single Java Virtual Machine (JVM) without the need for external synchronization, and the results will be equivalent to some serial execution. If this class is used concurrently by multiple JVMs that store their preference data in the same backing store, the data store will not be corrupted, but no other guarantees are made concerning the consistency of the preference data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringabsolutePath()Returns this node's absolute path name.java.lang.String[]childrenNames()Returns the names of the children of this node.voidclear()Removes all of the properties (key-value associations) in this node.voidflush()Forces any changes in the contents of this node and its descendants to the persistent store.java.lang.Stringget(java.lang.String key, java.lang.String def)Returns the value associated with the specifiedkeyin this node.booleangetBoolean(java.lang.String key, boolean def)Returns thebooleanvalue represented by theStringobject associated with the specifiedkeyin this node.byte[]getByteArray(java.lang.String key, byte[] def)Returns thebyte[]value represented by theStringobject associated with the specifiedkeyin this node.doublegetDouble(java.lang.String key, double def)Returns thedoublevalue represented by theStringobject associated with the specifiedkeyin this node.floatgetFloat(java.lang.String key, float def)Returns the floatvaluerepresented by theStringobject associated with the specifiedkeyin this node.intgetInt(java.lang.String key, int def)Returns theintvalue represented by theStringobject associated with the specifiedkeyin this node.longgetLong(java.lang.String key, long def)Returns thelongvalue represented by theStringobject associated with the specifiedkeyin this node.java.lang.String[]keys()Returns all of the keys that have an associated value in this node.java.lang.Stringname()Returns this node's name, relative to its parent.Preferencesnode(java.lang.String pathName)Returns a namedPreferencesobject (node), creating it and any of its ancestors if they do not already exist.booleannodeExists(java.lang.String pathName)Returns true if the named node exists.Preferencesparent()Returns the parent of this node, ornullif this is the root.voidput(java.lang.String key, java.lang.String value)Associates the specified value with the specified key in this node.voidputBoolean(java.lang.String key, boolean value)Associates aStringobject representing the specifiedbooleanvalue with the specified key in this node.voidputByteArray(java.lang.String key, byte[] value)Associates aStringobject representing the specifiedbyte[]with the specifiedkeyin this node.voidputDouble(java.lang.String key, double value)Associates aStringobject representing the specifieddoublevalue with the specifiedkeyin this node.voidputFloat(java.lang.String key, float value)Associates aStringobject representing the specifiedfloatvalue with the specifiedkeyin this node.voidputInt(java.lang.String key, int value)Associates aStringobject representing the specifiedintvalue with the specifiedkeyin this node.voidputLong(java.lang.String key, long value)Associates aStringobject representing the specifiedlongvalue with the specifiedkeyin this node.voidremove(java.lang.String key)Removes the value associated with the specifiedkeyin this node, if any.voidremoveNode()Removes this node and all of its descendants, invalidating any properties contained in the removed nodes.voidsync()Ensures that future reads from this node and its descendants reflect any changes that were committed to the persistent store (from any VM) prior to thesyncinvocation.
-
-
-
Method Detail
-
put
void put(java.lang.String key, java.lang.String value)Associates the specified value with the specified key in this node.- Parameters:
key- key with which the specified value is to be associated.value- value to be associated with the specified key.- Throws:
java.lang.NullPointerException- ifkeyorvalueisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.
-
get
java.lang.String get(java.lang.String key, java.lang.String def)Returns the value associated with the specifiedkeyin this node. Returns the specified default if there is no value associated with thekey, or the backing store is inaccessible.- Parameters:
key- key whose associated value is to be returned.def- the value to be returned in the event that this node has no value associated withkeyor the backing store is inaccessible.- Returns:
- the value associated with
key, ordefif no value is associated withkey. - Throws:
java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.java.lang.NullPointerException- ifkeyisnull. (Anulldefault is permitted.)
-
remove
void remove(java.lang.String key)
Removes the value associated with the specifiedkeyin this node, if any.- Parameters:
key- key whose mapping is to be removed from this node.- Throws:
java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
get(String,String)
-
clear
void clear() throws BackingStoreExceptionRemoves all of the properties (key-value associations) in this node. This call has no effect on any descendants of this node.- Throws:
BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
remove(String)
-
putInt
void putInt(java.lang.String key, int value)Associates aStringobject representing the specifiedintvalue with the specifiedkeyin this node. The associated string is the one that would be returned if theintvalue were passed toInteger.toString(int). This method is intended for use in conjunction withgetInt(String, int)method.Implementor's note: it is not necessary that the property value be represented by a
Stringobject in the backing store. If the backing store supports integer values, it is not unreasonable to use them. This implementation detail is not visible through thePreferencesAPI, which allows the value to be read as anint(withgetIntor aString(withget) type.- Parameters:
key- key with which the string form of value is to be associated.value-valuewhose string form is to be associated withkey.- Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
getInt(String,int)
-
getInt
int getInt(java.lang.String key, int def)Returns theintvalue represented by theStringobject associated with the specifiedkeyin this node. TheStringobject is converted to anintas byInteger.parseInt(String). Returns the specified default if there is no value associated with thekey, the backing store is inaccessible, or ifInteger.parseInt(String)would throw aNumberFormatExceptionif the associatedvaluewere passed. This method is intended for use in conjunction with theputInt(String, int)method.- Parameters:
key- key whose associated value is to be returned as anint.def- the value to be returned in the event that this node has no value associated withkeyor the associated value cannot be interpreted as anintor the backing store is inaccessible.- Returns:
- the
intvalue represented by theStringobject associated withkeyin this node, ordefif the associated value does not exist or cannot be interpreted as aninttype. - Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
putInt(String,int),get(String,String)
-
putLong
void putLong(java.lang.String key, long value)Associates aStringobject representing the specifiedlongvalue with the specifiedkeyin this node. The associatedStringobject is the one that would be returned if thelongvalue were passed toLong.toString(long). This method is intended for use in conjunction with thegetLong(String, long)method.Implementor's note: it is not necessary that the
valuebe represented by aStringtype in the backing store. If the backing store supportslongvalues, it is not unreasonable to use them. This implementation detail is not visible through thePreferencesAPI, which allows the value to be read as along(withgetLongor aString(withget) type.- Parameters:
key-keywith which the string form ofvalueis to be associated.value-valuewhose string form is to be associated withkey.- Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
getLong(String,long)
-
getLong
long getLong(java.lang.String key, long def)Returns thelongvalue represented by theStringobject associated with the specifiedkeyin this node. TheStringobject is converted to alongas byLong.parseLong(String). Returns the specified default if there is no value associated with thekey, the backing store is inaccessible, or ifLong.parseLong(String)would throw aNumberFormatExceptionif the associatedvaluewere passed. This method is intended for use in conjunction with theputLong(String, long)method.- Parameters:
key-keywhose associated value is to be returned as alongvalue.def- the value to be returned in the event that this node has no value associated withkeyor the associated value cannot be interpreted as alongtype or the backing store is inaccessible.- Returns:
- the
longvalue represented by theStringobject associated withkeyin this node, ordefif the associated value does not exist or cannot be interpreted as alongtype. - Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
putLong(String,long),get(String,String)
-
putBoolean
void putBoolean(java.lang.String key, boolean value)Associates aStringobject representing the specifiedbooleanvalue with the specified key in this node. The associated string is "true" if the value istrue, and "false" if it isfalse. This method is intended for use in conjunction with thegetBoolean(String, boolean)method.Implementor's note: it is not necessary that the value be represented by a string in the backing store. If the backing store supports
booleanvalues, it is not unreasonable to use them. This implementation detail is not visible through thePreferencesAPI, which allows the value to be read as aboolean(withgetBoolean) or aString(withget) type.- Parameters:
key-keywith which the string form of value is to be associated.value- value whose string form is to be associated withkey.- Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
getBoolean(String,boolean),get(String,String)
-
getBoolean
boolean getBoolean(java.lang.String key, boolean def)Returns thebooleanvalue represented by theStringobject associated with the specifiedkeyin this node. Valid strings are "true", which representstrue, and "false", which representsfalse. Case is ignored, so, for example, "TRUE" and "False" are also valid. This method is intended for use in conjunction with theputBoolean(String, boolean)method.Returns the specified default if there is no value associated with the
key, the backing store is inaccessible, or if the associated value is something other than "true" or "false", ignoring case.- Parameters:
key-keywhose associated value is to be returned as aboolean.def- the value to be returned in the event that this node has no value associated withkeyor the associated value cannot be interpreted as abooleanor the backing store is inaccessible.- Returns:
- the
booleanvalue represented by theStringobject associated withkeyin this node, ornullif the associated value does not exist or cannot be interpreted as aboolean. - Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
get(String,String),putBoolean(String,boolean)
-
putFloat
void putFloat(java.lang.String key, float value)Associates aStringobject representing the specifiedfloatvalue with the specifiedkeyin this node. The associatedStringobject is the one that would be returned if thefloatvalue were passed toFloat.toString(float). This method is intended for use in conjunction with thegetFloat(String, float)method.Implementor's note: it is not necessary that the value be represented by a string in the backing store. If the backing store supports
floatvalues, it is not unreasonable to use them. This implementation detail is not visible through thePreferencesAPI, which allows the value to be read as afloat(withgetFloat) or aString(withget) type.- Parameters:
key-keywith which the string form of value is to be associated.value- value whose string form is to be associated withkey.- Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
getFloat(String,float)
-
getFloat
float getFloat(java.lang.String key, float def)Returns the floatvaluerepresented by theStringobject associated with the specifiedkeyin this node. TheStringobject is converted to afloatvalue as byFloat.parseFloat(String). Returns the specified default if there is no value associated with thekey, the backing store is inaccessible, or ifFloat.parseFloat(String)would throw aNumberFormatExceptionif the associated value were passed. This method is intended for use in conjunction with theputFloat(String, float)method.- Parameters:
key-keywhose associated value is to be returned as afloatvalue.def- the value to be returned in the event that this node has no value associated withkeyor the associated value cannot be interpreted as afloattype or the backing store is inaccessible.- Returns:
- the
floatvalue represented by the string associated withkeyin this node, ordefif the associated value does not exist or cannot be interpreted as afloattype. - Throws:
java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.java.lang.NullPointerException- ifkeyisnull.- See Also:
putFloat(String,float),get(String,String)
-
putDouble
void putDouble(java.lang.String key, double value)Associates aStringobject representing the specifieddoublevalue with the specifiedkeyin this node. The associatedStringobject is the one that would be returned if thedoublevalue were passed toDouble.toString(double). This method is intended for use in conjunction with thegetDouble(String, double)methodImplementor's note: it is not necessary that the value be represented by a string in the backing store. If the backing store supports
doublevalues, it is not unreasonable to use them. This implementation detail is not visible through thePreferencesAPI, which allows the value to be read as adouble(withgetDouble) or aString(withget) type.- Parameters:
key-keywith which the string form of value is to be associated.value- value whose string form is to be associated withkey.- Throws:
java.lang.NullPointerException- ifkeyisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
getDouble(String,double)
-
getDouble
double getDouble(java.lang.String key, double def)Returns thedoublevalue represented by theStringobject associated with the specifiedkeyin this node. TheStringobject is converted to adoublevalue as byDouble.parseDouble(String). Returns the specified default if there is no value associated with thekey, the backing store is inaccessible, or ifDouble.parseDouble(String)would throw aNumberFormatExceptionif the associated value were passed. This method is intended for use in conjunction with theputDouble(java.lang.String, double)method.- Parameters:
key-keywhose associated value is to be returned as adoublevalue.def- the value to be returned in the event that this node has no value associated withkeyor the associated value cannot be interpreted as adoubletype or the backing store is inaccessible.- Returns:
- the
doublevalue represented by theStringobject associated withkeyin this node, ordefif the associated value does not exist or cannot be interpreted as adoubletype. - Throws:
java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.java.lang.NullPointerException- ifkeyisnull.- See Also:
putDouble(String,double),get(String,String)
-
putByteArray
void putByteArray(java.lang.String key, byte[] value)Associates aStringobject representing the specifiedbyte[]with the specifiedkeyin this node. The associatedStringobject the Base64 encoding of thebyte[], as defined in RFC 2045 , Section 6.8, with one minor change: the string will consist solely of characters from the Base64 Alphabet ; it will not contain any newline characters. This method is intended for use in conjunction with thegetByteArray(String, byte[])method.Implementor's note: it is not necessary that the value be represented by a
Stringtype in the backing store. If the backing store supportsbyte[]values, it is not unreasonable to use them. This implementation detail is not visible through thePreferencesAPI, which allows the value to be read as an abyte[]object (withgetByteArray) or aStringobject (withget).- Parameters:
key-keywith which the string form ofvalueis to be associated.value-valuewhose string form is to be associated withkey.- Throws:
java.lang.NullPointerException- ifkeyorvalueisnull.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
getByteArray(String,byte[]),get(String,String)
-
getByteArray
byte[] getByteArray(java.lang.String key, byte[] def)Returns thebyte[]value represented by theStringobject associated with the specifiedkeyin this node. ValidStringobjects are Base64 encoded binary data, as defined in RFC 2045 , Section 6.8, with one minor change: the string must consist solely of characters from the Base64 Alphabet ; no newline characters or extraneous characters are permitted. This method is intended for use in conjunction with theputByteArray(String, byte[])method.Returns the specified default if there is no value associated with the
key, the backing store is inaccessible, or if the associated value is not a valid Base64 encoded byte array (as defined above).- Parameters:
key-keywhose associated value is to be returned as abyte[]object.def- the value to be returned in the event that this node has no value associated withkeyor the associated value cannot be interpreted as abyte[]type, or the backing store is inaccessible.- Returns:
- the
byte[]value represented by theStringobject associated withkeyin this node, ordefif the associated value does not exist or cannot be interpreted as abyte[]. - Throws:
java.lang.NullPointerException- ifkeyisnull. (Anullvalue fordefis permitted.)java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
get(String,String),putByteArray(String,byte[])
-
keys
java.lang.String[] keys() throws BackingStoreExceptionReturns all of the keys that have an associated value in this node. (The returned array will be of size zero if this node has no preferences and notnull!)- Returns:
- an array of the keys that have an associated value in this node.
- Throws:
BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.
-
childrenNames
java.lang.String[] childrenNames() throws BackingStoreExceptionReturns the names of the children of this node. (The returned array will be of size zero if this node has no children and notnull!)- Returns:
- the names of the children of this node.
- Throws:
BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.
-
parent
Preferences parent()
Returns the parent of this node, ornullif this is the root.- Returns:
- the parent of this node.
- Throws:
java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.
-
node
Preferences node(java.lang.String pathName)
Returns a namedPreferencesobject (node), creating it and any of its ancestors if they do not already exist. Accepts a relative or absolute pathname. Absolute pathnames (which begin with'/') are interpreted relative to the root of this node. Relative pathnames (which begin with any character other than'/') are interpreted relative to this node itself. The empty string ("") is a valid relative pathname, referring to this node itself.If the returned node did not exist prior to this call, this node and any ancestors that were created by this call are not guaranteed to become persistent until the
flushmethod is called on the returned node (or one of its descendants).- Parameters:
pathName- the path name of thePreferencesobject to return.- Returns:
- the specified
Preferencesobject. - Throws:
java.lang.IllegalArgumentException- if the path name is invalid.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.java.lang.NullPointerException- if path name isnull.- See Also:
flush()
-
nodeExists
boolean nodeExists(java.lang.String pathName) throws BackingStoreExceptionReturns true if the named node exists. Accepts a relative or absolute pathname. Absolute pathnames (which begin with'/') are interpreted relative to the root of this node. Relative pathnames (which begin with any character other than'/') are interpreted relative to this node itself. The pathname""is valid, and refers to this node itself.If this node (or an ancestor) has already been removed with the
removeNode()method, it is legal to invoke this method, but only with the pathname""; the invocation will returnfalse. Thus, the idiomp.nodeExists("")may be used to test whetherphas been removed.- Parameters:
pathName- the path name of the node whose existence is to be checked.- Returns:
- true if the specified node exists.
- Throws:
BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method andpathnameis not the empty string ("").java.lang.IllegalArgumentException- if the path name is invalid (i.e., it contains multiple consecutive slash characters, or ends with a slash character and is more than one character long).
-
removeNode
void removeNode() throws BackingStoreExceptionRemoves this node and all of its descendants, invalidating any properties contained in the removed nodes. Once a node has been removed, attempting any method other thanname(),absolutePath()ornodeExists("")on the correspondingPreferencesinstance will fail with anIllegalStateException. (The methods defined onObjectcan still be invoked on a node after it has been removed; they will not throwIllegalStateException.)The removal is not guaranteed to be persistent until the
flushmethod is called on the parent of this node.- Throws:
java.lang.IllegalStateException- if this node (or an ancestor) has already been removed with theremoveNode()method.BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.- See Also:
flush()
-
name
java.lang.String name()
Returns this node's name, relative to its parent.- Returns:
- this node's name, relative to its parent.
-
absolutePath
java.lang.String absolutePath()
Returns this node's absolute path name. Note that:- Root node - The path name of the root node is
"/". - Slash at end - Path names other than that of the root node may not
end in slash (
'/'). - Unusual names -
"."and".."have no special significance in path names. - Illegal names - The only illegal path names are those that contain multiple consecutive slashes, or that end in slash and are not the root.
- Returns:
- this node's absolute path name.
- Root node - The path name of the root node is
-
flush
void flush() throws BackingStoreExceptionForces any changes in the contents of this node and its descendants to the persistent store.Once this method returns successfully, it is safe to assume that all changes made in the subtree rooted at this node prior to the method invocation have become permanent.
Implementations are free to flush changes into the persistent store at any time. They do not need to wait for this method to be called.
When a flush occurs on a newly created node, it is made persistent, as are any ancestors (and descendants) that have yet to be made persistent. Note however that any properties value changes in ancestors are not guaranteed to be made persistent.
- Throws:
BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
sync()
-
sync
void sync() throws BackingStoreException
Ensures that future reads from this node and its descendants reflect any changes that were committed to the persistent store (from any VM) prior to thesyncinvocation. As a side-effect, forces any changes in the contents of this node and its descendants to the persistent store, as if theflushmethod had been invoked on this node.- Throws:
BackingStoreException- if this operation cannot be completed due to a failure in the backing store, or inability to communicate with it.java.lang.IllegalStateException- if this node (or an ancestor) has been removed with theremoveNode()method.- See Also:
flush()
-
-