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.
-
ClassesClassDescriptionThe implementation of
StringConverter
forString
values in BASE64 format.The implementation ofNumberStringConverter
BigDecimal
.The implementation ofNumberStringConverter
BigInteger
.An implementation ofStringConverter
forboolean
andBoolean
values.
The methodBooleanStringConverter.fromString(CharSequence)
will accept the String "true", irrespective of case, for the valuetrue
, and any other String forfalse
(including the empty String!)The implementation ofStringConverter
forbyte
arrays.The implementation ofNumberStringConverter
Byte
.An implementation ofStringConverter
forCharacter
values.
CallingCharacterStringConverter.fromString(CharSequence)
with an empty String will cause anIllegalArgumentException
.The implementation ofStringConverter
forCharSequence
values.An implementation ofStringConverter
forCharset
values.
The methodCharsetStringConverter.fromString(CharSequence)
will useCharset.forName(String)
to obtain an instance ofCharset
based on the given value.An implementation ofStringConverter
forClass
values.
The methodClassStringConverter.fromString(CharSequence)
will useClass.forName(String, boolean, ClassLoader)
to load the class with the given name.An implementation ofStringConverter
forCurrency
values.An implementation for the interfaceStringConverter
forDate
.An implementation ofEnumStringConverter
forMonth
values.The implementation ofNumberStringConverter
Double
.
Thedouble
literals are expected in the format as they are emitted byDouble.toString(double)
; in particular, it expects decimal points instead of decimal commas for each locale.An implementation ofStringConverter
forDuration
values.
While the methodtoString(Duration)
simply usesDuration.toString()
, the methodDurationStringConverter.fromString(CharSequence)
usesDuration.parse(CharSequence)
to create theDuration
instance for the given value.An implementation ofStringConverter
forURL
values.EnumStringConverter<T extends Enum<T>>An implementation ofStringConverter
for types that are derived fromEnum
.An implementation ofStringConverter
forFile
values.
The file or folder that will be identified by the respectiveFile
object do not need to exist nor is it guaranteed that it can be accessed or create through the current user.
File names will not be normalised or canonicalized.
A file name of only blanks will be accepted as valid, while the empty String will cause anIllegalArgumentException
.The implementation ofNumberStringConverter
forfloat
andFloat
.
Thefloat
literals are expected in the format as they are emitted byFloat.toString(float)
; in particular, it expects decimal points instead of decimal commas for each locale.The implementation ofStringConverter
forString
values representing a hash value.The implementation ofStringConverter
forInetAddress
values.
The methodInetAddressStringConverter.fromString(CharSequence)
will useInetAddress.getByName(String)
to create aInetAddress
instance from the given value; this means, that when a host name is given as an argument – instead of an IP4 or IP6 address String – anIllegalArgumentException
is thrown when that host is unknown (cannot be resolved by DNS).The implementation ofTimeDateStringConverter
forInstant
.The implementation ofNumberStringConverter
Integer
.An implementation ofStringConverter
for arbitrary instances ofList
implementations.The implementation ofTimeDateStringConverter
forjava.time.LocalDate
.The implementation ofTimeDateStringConverter
forjava.time.LocalDateTime
.An implementation ofStringConverter
forLocale
values.
The methodLocaleStringConverter.fromString(CharSequence)
will useSystemUtils.retrieveLocale(CharSequence)
to obtain an instance ofLocale
based on the given value.The implementation ofTimeDateStringConverter
forjava.time.LocalTime
.The implementation ofNumberStringConverter
Long
.The implementation ofTimeDateStringConverter
forjava.time.MonthDay
.An implementation ofEnumStringConverter
forMonth
values.NumberStringConverter<T extends Number>The base class for implementations ofStringConverter
for types that extendNumber
.The implementation ofTimeDateStringConverter
forjava.time.OffsetDateTime
.The implementation ofTimeDateStringConverter
forjava.time.OffsetTime
.An implementation ofStringConverter
forPath
values.
The methodPathStringConverter.fromString(CharSequence)
usesPath.of(String, String...)
to create thePath
instance for the given value.
The file or folder that will be identified by the respectivePath
object do not need to exist nor is it guaranteed that it can be accessed or create through the current user.
Names will not be normalised or canonicalized.
A path name of only blanks will be accepted as valid, while the empty String will cause anIllegalArgumentException
.An implementation ofStringConverter
for regular expressions that are stored asPattern
values.An implementation ofStringConverter
forPeriod
values.The implementation ofNumberStringConverter
forShort
.The implementation ofStringConverter
forString
values.An implementation ofStringConverter
for text values.TimeDateStringConverter<T extends TemporalAccessor>The abstract base class for implementations ofStringConverter
for types that extendTemporalAccessor
.The implementation ofEnumStringConverter
forTimeUnit
values.An implementation ofStringConverter
forTimeZone
values.An implementation ofStringConverter
forURI
values.
The methodURIStringConverter.fromString(CharSequence)
will use the constructorURI(String)
to create aURI
instance from the given value.An implementation ofStringConverter
forURL
values.An implementation ofStringConverter
forUUID
values.The implementation ofTimeDateStringConverter
forjava.time.YearMonth
.The implementation ofTimeDateStringConverter
forjava.time.Year
.The implementation ofTimeDateStringConverter
forjava.time.ZonedDateTime
.An implementation ofStringConverter
forZoneId
values.