Class ByteAccessor
java.lang.Object
org.tquadrat.foundation.config.spi.prefs.PreferenceAccessor<Byte>
org.tquadrat.foundation.config.spi.prefs.ByteAccessor
@ClassVersion(sourceVersion="$Id: ByteAccessor.java 1120 2024-03-16 09:48:00Z tquadrat $")
@API(status=STABLE,
since="0.0.1")
public final class ByteAccessor
extends PreferenceAccessor<Byte>
The implementation of
PreferenceAccessor
for instance of
Byte
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ByteAccessor.java 1120 2024-03-16 09:48:00Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.spi.prefs.ByteAccessor"
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal void
readPreference
(Preferences node) Reads the preference value from the given node and writes it to the property.final void
writePreference
(Preferences node) Writes the preference value from the property and writes it to the given node.Methods inherited from class org.tquadrat.foundation.config.spi.prefs.PreferenceAccessor
getPropertyName, getter, hasKey, setter
-
Constructor Details
-
ByteAccessor
Creates a newByteAccessor
instance.- Parameters:
propertyName
- The name of the property.getter
- The property getter.setter
- The property setter.
-
-
Method Details
-
readPreference
public final void readPreference(Preferences node) throws BackingStoreException, InvalidPreferenceValueException Reads the preference value from the given node and writes it to the property.- Specified by:
readPreference
in classPreferenceAccessor<Byte>
- 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.
-
writePreference
Writes the preference value from the property and writes it to the given node.- Specified by:
writePreference
in classPreferenceAccessor<Byte>
- Parameters:
node
- The preference node.
-