Module org.tquadrat.foundation.xml
Class DocumentStringConverter
java.lang.Object
org.tquadrat.foundation.xml.stringconverter.DocumentStringConverter
- All Implemented Interfaces:
Serializable
,StringConverter<Document>
@ClassVersion(sourceVersion="$Id: DocumentStringConverter.java 1072 2023-09-30 20:44:38Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
public final class DocumentStringConverter
extends Object
implements StringConverter<Document>
An implementation of
StringConverter
for
Document
values.
The method
fromString(CharSequence)
parses the input to a document, using the default
DocumentBuilderFactory
to get a
DocumentBuilder
.
toString(Document)
uses an instance of
Transformer
to get a String from the document.
- Note:
-
- When converting a String to an instance of
Document
back to a String, the final String may be different from the input because the formatting can differ, and some implicit defaults will now be provided as explicit setting. Only the semantics are guaranteed to be still the same.
- When converting a String to an instance of
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: DocumentStringConverter.java 1072 2023-09-30 20:44:38Z tquadrat $
- Since:
- 0.1.0
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.xml.stringconverter.DocumentStringConverter"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DocumentStringConverter
An instance of this class.static final String
The error message for an invalid XML contents: "Invalid XML: %1$s".Fields inherited from interface org.tquadrat.foundation.lang.StringConverter
METHOD_NAME_GetSubjectClass, METHOD_NAME_Provider
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal Document
fromString
(CharSequence source) final Collection
<Class<? extends Document>> Provides the subject class for this converter.static final DocumentStringConverter
provider()
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.final String
-
Field Details
-
MSG_InvalidXML
The error message for an invalid XML contents: "Invalid XML: %1$s".- See Also:
-
INSTANCE
An instance of this class.
-
-
Constructor Details
-
DocumentStringConverter
public DocumentStringConverter()Creates a newDocumentStringConverter
instance.
-
-
Method Details
-
fromString
- Specified by:
fromString
in interfaceStringConverter<Document>
- 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<Document>
-