Package org.tquadrat.foundation.util.stringconverter


@API(status=STABLE, since="0.0.1") package org.tquadrat.foundation.util.stringconverter

This package provides classes that allow to convert certain object instances into String and vice versa. These are inspired by the abstract class javafx.util.StringConverter<T> from JavaFX, and originally, I intended to use that class as the base for my implementation. But as JavaFX is no longer part of the Java distribution, I have to provide my own implementation: StringConverter.

An additional implementations can be retrieved by StringConverter.forClass(java.lang.Class) when it was published as a service. In that case it must be taken care that the subject class of the new implementation does not collide with that of an already existing implementation. But it is still possible to provide an alternative conversion – in that case, the implementation needs to be retrieved explicitly.

There is no implementation of a StringConverter for java.util.Date that works with human readable formats for the a date/time value, because the class does not provide a proper parser for dates, and because the method java.util.Date#toString() does not emit the milliseconds so that the condition

  StringConverter<java.util.Date> c = …
  java.util.Date v = …
  true == ( v.equals( c.fromString( c.toString( v ) );

cannot be easily satisfied for all possible values of v (and not to mention that the class java.util.Date is seen as obsolete).

But I provide the class DateLongStringConverter that converts an instance of java.util.Date to a String holding the number of milliseconds since the begin of the epoch and vice versa. But this cannot be retrieved through StringConverter.forClass( java.util.Date.class ).

This package hold implementations of StringConverter for a few enum types, like DayOfWeek and Month, additional String converters can be implemented easily by using EnumStringConverter as base class (like it was done for the already existing ones), or by using that class directly, like here:

  …
  StringConverter<java.nio.file.attribute.PosixFilePermission> pfpStringConverter = new EnumStringConverter<>( java.nio.file.attribute.PosixFilePermission.class );
  …

Alternatively, the method StringConverter.forEnum() can be used; basically, it does the same as the code snippet above.