Class PreferenceAccessor<T>
java.lang.Object
org.tquadrat.foundation.config.spi.prefs.PreferenceAccessor<T>
- Type Parameters:
T
- The type of the property.
- Direct Known Subclasses:
BooleanAccessor
,BulkDataAccessorBase
,ByteAccessor
,CollectionAccessor
,DateAccessor
,DoubleAccessor
,FloatAccessor
,IntegerAccessor
,LongAccessor
,MapAccessor
,PreferenceAccessorBase
,PrimitiveBooleanAccessor
,PrimitiveByteAccessor
,PrimitiveDoubleAccessor
,PrimitiveFloatAccessor
,PrimitiveIntAccessor
,PrimitiveLongAccessor
,PrimitiveShortAccessor
,ShortAccessor
,StringAccessor
@ClassVersion(sourceVersion="$Id: PreferenceAccessor.java 1061 2023-09-25 16:32:43Z tquadrat $")
@API(status=STABLE,
since="0.0.1")
public abstract class PreferenceAccessor<T>
extends Object
The abstract base class for the preference accessors.
Custom preference accessors can be implemented based directly on this
class. If a
StringConverter
implementation exists for the given type, the accessor for that type should
be implemented based on
PreferenceAccessorBase
.
Accessors for types that should be stored as byte
arrays (or
BLOBs) can be implemented by extending
BulkDataAccessorBase
.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: PreferenceAccessor.java 1061 2023-09-25 16:32:43Z tquadrat $
- Since:
- 0.0.1
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.spi.prefs.PreferenceAccessor"
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal String
Returns the property name.getter()
Returns the getter.protected final boolean
hasKey
(Preferences node) Checks whether the provided preferences node has a key name like the property name.abstract void
readPreference
(Preferences node) Reads the preference value from the given node and writes it to the property.setter()
Returns the setter.abstract void
writePreference
(Preferences node) Writes the preference value from the property and writes it to the given node.
-
Field Details
-
m_Getter
The property getter. -
m_PropertyName
The property name. -
m_Setter
The property setter.
-
-
Constructor Details
-
PreferenceAccessor
Creates a newPreferenceAccessor
instance.- Parameters:
propertyName
- The name of the property.getter
- The property getter.setter
- The property setter.
-
-
Method Details
-
getPropertyName
Returns the property name.- Returns:
- The property name.
-
getter
Returns the getter.- Returns:
- The getter.
-
hasKey
Checks whether the provided preferences node has a key name like the property name.- Parameters:
node
- The preferences node.- Returns:
true
if there is a key with that name,false
otherwise.- Throws:
BackingStoreException
- There are problems on reading the given node.
-
readPreference
public abstract void readPreference(Preferences node) throws BackingStoreException, InvalidPreferenceValueException Reads the preference value from the given node and writes it to the property.- Parameters:
node
- The preference node.- Throws:
BackingStoreException
- There are problems on reading the given node.InvalidPreferenceValueException
- The preferences value cannot be translated to the property type.
-
setter
Returns the setter.- Returns:
- The setter.
-
writePreference
Writes the preference value from the property and writes it to the given node.- Parameters:
node
- The preference node.- Throws:
BackingStoreException
- There are problems on writing the given node.
-