protected XMLParserConfiguration |
XMLParserConfiguration.clone() |
Provides a new instance of the same configuration.
|
XMLParserConfiguration |
XMLParserConfiguration.withcDataTagName(String newVal) |
The name of the key in a JSON Object that indicates a CDATA section.
|
XMLParserConfiguration |
XMLParserConfiguration.withCloseEmptyTag(boolean closeEmptyTag) |
To enable explicit end tag with empty value.
|
XMLParserConfiguration |
XMLParserConfiguration.withConvertNilAttributeToNull(boolean newVal) |
When parsing the XML into JSON, specifies if values with attribute xsi:nil="true"
should be kept as attribute(false), or they should be converted to
null(true)
|
XMLParserConfiguration |
XMLParserConfiguration.withForceList(Set<String> forceList) |
When parsing the XML into JSON, specifies that tags that will be converted to arrays
in this configuration Set<String> to parse the provided tags' values as arrays
|
XMLParserConfiguration |
XMLParserConfiguration.withKeepStrings(boolean newVal) |
When parsing the XML into JSON, specifies if values should be kept as strings (true), or if
they should try to be guessed into JSON values (numeric, boolean, string)
|
XMLParserConfiguration |
XMLParserConfiguration.withMaxNestingDepth(int maxNestingDepth) |
Defines the maximum nesting depth that the parser will descend before throwing an exception
when parsing the XML into JSON.
|
XMLParserConfiguration |
XMLParserConfiguration.withShouldTrimWhitespace(boolean shouldTrimWhiteSpace) |
Sets whether whitespace should be trimmed inside of tags.
|
XMLParserConfiguration |
XMLParserConfiguration.withXsiTypeMap(Map<String,XMLXsiTypeConverter<?>> xsiTypeMap) |
When parsing the XML into JSON, specifies that the values with attribute xsi:type
will be converted to target type defined to client in this configuration
Map<String, XMLXsiTypeConverter<?>> to parse values with attribute
xsi:type="integer" as integer, xsi:type="string" as string
|