public class JsonXMLOutputFactory extends AbstractXMLOutputFactory
| Modifier and Type | Field and Description |
|---|---|
static String |
PROP_AUTO_ARRAY
Start/end arrays automatically?
|
static String |
PROP_AUTO_PRIMITIVE
Convert element text to JSON primitives (number, boolean, null) automatically?
|
static String |
PROP_CUSTOM_REGEX
Convert element text to JSON primitives with ignore given regex (number, boolean, null) automatically?
|
static String |
PROP_CUSTOM_REPLACE_REGEX |
static String |
PROP_CUSTOM_REPLACE_SEQUENCE |
static String |
PROP_MULTIPLE_PI
Whether to use the
JsonXMLStreamConstants.MULTIPLE_PI_TARGET
processing instruction target to trigger an array start. |
static String |
PROP_NAMESPACE_DECLARATIONS
Whether to write namespace declarations.
|
static String |
PROP_NAMESPACE_SEPARATOR
Namespace prefix separator.
|
static String |
PROP_PRETTY_PRINT
Format output for better readability?
|
static String |
PROP_VIRTUAL_ROOT
JSON documents may have have multiple root properties.
|
IS_REPAIRING_NAMESPACES| Constructor and Description |
|---|
JsonXMLOutputFactory() |
JsonXMLOutputFactory(JsonStreamFactory streamFactory) |
JsonXMLOutputFactory(JsonXMLConfig config) |
JsonXMLOutputFactory(JsonXMLConfig config,
JsonStreamFactory streamFactory) |
| Modifier and Type | Method and Description |
|---|---|
XMLEventWriter |
createXMLEventWriter(XMLStreamWriter writer) |
JsonXMLStreamWriter |
createXMLStreamWriter(OutputStream stream) |
JsonXMLStreamWriter |
createXMLStreamWriter(OutputStream stream,
String encoding) |
JsonXMLStreamWriter |
createXMLStreamWriter(Writer stream) |
Object |
getProperty(String name) |
boolean |
isPropertySupported(String name) |
void |
setProperty(String name,
Object value) |
createXMLEventWriter, createXMLEventWriter, createXMLEventWriter, createXMLEventWriter, createXMLStreamWriternewFactory, newFactory, newInstance, newInstancepublic static final String PROP_AUTO_ARRAY
Start/end arrays automatically?
The default value is false.
public static final String PROP_AUTO_PRIMITIVE
Convert element text to JSON primitives (number, boolean, null) automatically?
The default value is false.
public static final String PROP_MULTIPLE_PI
Whether to use the JsonXMLStreamConstants.MULTIPLE_PI_TARGET
processing instruction target to trigger an array start.
If true, a PI is used to inform the writer to begin an array,
passing the name of following multiple elements as data.
The writer will close arrays automatically.
Note that the element given in the PI may be written zero times, indicating an empty array.
The default value is true.
public static final String PROP_VIRTUAL_ROOT
JSON documents may have have multiple root properties. However, XML requires a single root element. This property takes the name of a "virtual" root element, which will be removed from the stream when writing.
The default value is null.
public static final String PROP_NAMESPACE_SEPARATOR
Namespace prefix separator.
The default value is ':'.
public static final String PROP_NAMESPACE_DECLARATIONS
Whether to write namespace declarations.
The default value is true.
public static final String PROP_PRETTY_PRINT
Format output for better readability?
The default value is false.
public static final String PROP_CUSTOM_REGEX
Convert element text to JSON primitives with ignore given regex (number, boolean, null) automatically?
The default value is null.
public static final String PROP_CUSTOM_REPLACE_REGEX
public static final String PROP_CUSTOM_REPLACE_SEQUENCE
public JsonXMLOutputFactory()
throws FactoryConfigurationError
FactoryConfigurationErrorpublic JsonXMLOutputFactory(JsonStreamFactory streamFactory)
public JsonXMLOutputFactory(JsonXMLConfig config) throws FactoryConfigurationError
FactoryConfigurationErrorpublic JsonXMLOutputFactory(JsonXMLConfig config, JsonStreamFactory streamFactory)
public JsonXMLStreamWriter createXMLStreamWriter(OutputStream stream, String encoding) throws XMLStreamException
createXMLStreamWriter in class XMLOutputFactoryXMLStreamExceptionpublic JsonXMLStreamWriter createXMLStreamWriter(Writer stream) throws XMLStreamException
createXMLStreamWriter in class XMLOutputFactoryXMLStreamExceptionpublic JsonXMLStreamWriter createXMLStreamWriter(OutputStream stream) throws XMLStreamException
createXMLStreamWriter in class XMLOutputFactoryXMLStreamExceptionpublic XMLEventWriter createXMLEventWriter(XMLStreamWriter writer) throws XMLStreamException
createXMLEventWriter in class AbstractXMLOutputFactoryXMLStreamExceptionpublic boolean isPropertySupported(String name)
isPropertySupported in class AbstractXMLOutputFactorypublic Object getProperty(String name) throws IllegalArgumentException
getProperty in class AbstractXMLOutputFactoryIllegalArgumentExceptionpublic void setProperty(String name, Object value) throws IllegalArgumentException
setProperty in class AbstractXMLOutputFactoryIllegalArgumentExceptionCopyright © 2005–2019 Apache Software Foundation. All rights reserved.