Class PrimitiveLongAccessor
java.lang.Object
org.tquadrat.foundation.config.spi.prefs.PreferenceAccessor<Long>
org.tquadrat.foundation.config.spi.prefs.PrimitiveLongAccessor
@ClassVersion(sourceVersion="$Id: PrimitiveLongAccessor.java 914 2021-05-07 21:22:12Z tquadrat $")
@API(status=STABLE,
since="0.0.1")
public final class PrimitiveLongAccessor
extends PreferenceAccessor<Long>
The implementation of
PreferenceAccessor
for long
.
This differs from
LongAccessor
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: PrimitiveLongAccessor.java 914 2021-05-07 21:22:12Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.spi.prefs.PrimitiveLongAccessor"
-
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
-
PrimitiveLongAccessor
Creates a newPrimitiveLongAccessor
instance.- Parameters:
propertyName
- The name of the property.getter
- The property getter.setter
- The property setter.
-
-
Method Details
-
readPreference
Reads the preference value from the given node and writes it to the property.- Specified by:
readPreference
in classPreferenceAccessor<Long>
- Parameters:
node
- The preference node.- Throws:
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<Long>
- Parameters:
node
- The preference node.
-