Type Parameters:
T - The element type of the Set.

@ClassVersion(sourceVersion="$Id: SetAccessor.java 912 2021-05-06 22:27:04Z tquadrat $") @API(status=STABLE, since="0.0.1") public final class SetAccessor<T> extends CollectionAccessor<T,Set<T>>
The implementation of PreferenceAccessor for instances of Set.
Note:
  • This class requires that there is an implementation of StringConverter available for the Set's element type.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SetAccessor.java 912 2021-05-06 22:27:04Z tquadrat $
Since:
0.0.1
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.spi.prefs.SetAccessor"

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

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

    • SetAccessor

      public SetAccessor(String propertyName, StringConverter<T> stringConverter, Getter<Set<T>> getter, Setter<Set<T>> setter)
      Creates a new SetAccessor instance.
      Parameters:
      propertyName - The name of the property.
      stringConverter - The implementation of StringConverter for the Set element type.
      getter - The property getter.
      setter - The property setter.
  • Method Details

    • createCollection

      protected final Set<T> createCollection(int size)
      Creates the collection data structure.
      Specified by:
      createCollection in class CollectionAccessor<T,Set<T>>
      Parameters:
      size - The suggested size of the collection; can be ignored if not appropriate.
      Returns:
      The collection data structure.