Uses of Package
org.tquadrat.foundation.util.stringconverter
Packages that use org.tquadrat.foundation.util.stringconverter
Package
Description
This package provides classes that allow to convert certain
object instances into String and vice versa.
-
Classes in org.tquadrat.foundation.util.stringconverter used by org.tquadrat.foundation.util.stringconverterClassDescriptionThe 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.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
.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.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.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.