Module org.tquadrat.foundation.util
Class StringStringConverter
java.lang.Object
org.tquadrat.foundation.util.stringconverter.StringStringConverter
- All Implemented Interfaces:
Serializable
,StringConverter<String>
@ClassVersion(sourceVersion="$Id: StringStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=STABLE,
since="0.0.6")
public final class StringStringConverter
extends Object
implements StringConverter<String>
The implementation of
StringConverter
for
String
values.
Although a conversion from String to String is redundant (at best), this implementation exists for cases where a string converter is retrieved based on the data type; it can simplify the code when no special case must be considered for String.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: StringStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.6
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.stringconverter.StringStringConverter"
-
Field Summary
FieldsFields inherited from interface org.tquadrat.foundation.lang.StringConverter
METHOD_NAME_GetSubjectClass, METHOD_NAME_Provider
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal String
fromString
(CharSequence source) final Collection
<Class<String>> Provides the subject class for this converter.static final StringStringConverter
provider()
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.final String
-
Field Details
-
INSTANCE
An instance of this class.
-
-
Constructor Details
-
StringStringConverter
public StringStringConverter()Creates a new instance ofStringStringConverter
.
-
-
Method Details
-
fromString
- Specified by:
fromString
in interfaceStringConverter<String>
- Throws:
IllegalArgumentException
-
getSubjectClass
Provides the subject class for this converter.- Returns:
- The subject class.
-
provider
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.- Returns:
- The instance for this
StringConverter
implementation.
-
toString
- Specified by:
toString
in interfaceStringConverter<String>
-