public class JsonXMLMapper<T> extends Object
Constructor and Description |
---|
JsonXMLMapper(Class<T> type) |
JsonXMLMapper(Class<T> type,
JsonXML config) |
Modifier and Type | Method and Description |
---|---|
protected JsonXMLBinder |
createBinder(JsonXML config) |
protected JAXBContext |
createContext(JsonXML config) |
List<T> |
readArray(InputStream input) |
List<T> |
readArray(Reader reader) |
T |
readObject(InputStream input) |
T |
readObject(Reader reader) |
void |
writeArray(OutputStream output,
Collection<T> collection) |
void |
writeArray(Writer writer,
Collection<T> collection) |
void |
writeObject(OutputStream output,
T value) |
void |
writeObject(Writer writer,
T value) |
public JsonXMLMapper(Class<T> type) throws JAXBException
JAXBException
public JsonXMLMapper(Class<T> type, JsonXML config) throws JAXBException
JAXBException
protected JsonXMLBinder createBinder(JsonXML config)
protected JAXBContext createContext(JsonXML config) throws JAXBException
JAXBException
public T readObject(Reader reader) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public T readObject(InputStream input) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public void writeObject(Writer writer, T value) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public void writeObject(OutputStream output, T value) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public List<T> readArray(Reader reader) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public List<T> readArray(InputStream input) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public void writeArray(Writer writer, Collection<T> collection) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
public void writeArray(OutputStream output, Collection<T> collection) throws JAXBException, XMLStreamException
JAXBException
XMLStreamException
Copyright © 2005–2023 Apache Software Foundation. All rights reserved.