Interface XMLStreamUtils
-
public interface XMLStreamUtils
-
-
Method Summary
Static Methods Modifier and Type Method Description static voidcopy(InputStream inputStream, XMLStreamWriter xmlStreamWriter)static voidcopy(Reader reader, XMLStreamWriter xmlStreamWriter)static voidcopy(XMLStreamReader xmlStreamReader, OutputStream outputStream)static voidcopy(XMLStreamReader xmlStreamReader, Writer writer)static voidcopy(XMLStreamReader reader, XMLStreamWriter writer)
-
-
-
Method Detail
-
copy
static void copy(Reader reader, XMLStreamWriter xmlStreamWriter) throws XMLStreamException
- Throws:
XMLStreamException
-
copy
static void copy(XMLStreamReader xmlStreamReader, Writer writer) throws XMLStreamException
- Throws:
XMLStreamException
-
copy
static void copy(InputStream inputStream, XMLStreamWriter xmlStreamWriter) throws XMLStreamException
- Throws:
XMLStreamException
-
copy
static void copy(XMLStreamReader xmlStreamReader, OutputStream outputStream) throws XMLStreamException
- Throws:
XMLStreamException
-
copy
static void copy(XMLStreamReader reader, XMLStreamWriter writer) throws XMLStreamException
- Throws:
XMLStreamException
-
-