Class EnumAccessor<T extends Enum<T>>

Type Parameters:
T - The concrete data type that is handled by this preference accessor type implementation.

@ClassVersion(sourceVersion="$Id: EnumAccessor.java 910 2021-05-06 21:38:06Z tquadrat $") @API(status=STABLE, since="0.0.1") public final class EnumAccessor<T extends Enum<T>> extends SimplePreferenceAccessor<T>
The implementation of PreferenceAccessor for classes that extends Enum.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: EnumAccessor.java 910 2021-05-06 21:38:06Z tquadrat $
Since:
0.0.1
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.spi.prefs.EnumAccessor"

UML Diagram for "org.tquadrat.foundation.config.spi.prefs.EnumAccessor"

UML Diagram for "org.tquadrat.foundation.config.spi.prefs.EnumAccessor"
  • Constructor Details

    • EnumAccessor

      public EnumAccessor(String propertyName, Class<T> propertyType, Getter<T> getter, Setter<T> setter)
      Creates a new EnumAccessor instance.
      Parameters:
      propertyName - The name of the property.
      propertyType - The type of the property.
      getter - The property getter.
      setter - The property setter.