Class PrimitiveByteAccessor
java.lang.Object
org.tquadrat.foundation.config.spi.prefs.PreferenceAccessor<Byte>
org.tquadrat.foundation.config.spi.prefs.PrimitiveByteAccessor
@ClassVersion(sourceVersion="$Id: PrimitiveByteAccessor.java 1120 2024-03-16 09:48:00Z tquadrat $")
@API(status=STABLE,
     since="0.0.1")
public final class PrimitiveByteAccessor
extends PreferenceAccessor<Byte>
The implementation of
  PreferenceAccessor
  for byte.
This differs from
  ByteAccessor
  as it forces 0 (zero) as the default value, while the other
  implementation has null as the default value.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: PrimitiveByteAccessor.java 1120 2024-03-16 09:48:00Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
- 
    
         UML Diagram for "org.tquadrat.foundation.config.spi.prefs.PrimitiveByteAccessor" 
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidreadPreference(Preferences node) Reads the preference value from the given node and writes it to the property.final voidwritePreference(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.PreferenceAccessorgetPropertyName, getter, hasKey, setter
- 
Constructor Details- 
PrimitiveByteAccessorCreates a newPrimitiveByteAccessorinstance.- Parameters:
- propertyName- The name of the property.
- getter- The property getter.
- setter- The property setter.
 
 
- 
- 
Method Details- 
readPreferenceReads the preference value from the given node and writes it to the property.- Specified by:
- readPreferencein class- PreferenceAccessor<Byte>
- Parameters:
- node- The preference node.
- Throws:
- InvalidPreferenceValueException- The preferences value cannot be translated to the property type.
 
- 
writePreferenceWrites the preference value from the property and writes it to the given node.- Specified by:
- writePreferencein class- PreferenceAccessor<Byte>
- Parameters:
- node- The preference node.
 
 
- 
