Interface JSONWriterRecord.Output
-
- All Known Implementing Classes:
JSONWriterRecord.OutputStreamOutput
- Enclosing class:
- JSONWriterRecord
protected static interface JSONWriterRecord.Output
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
flush()
org.eclipse.persistence.internal.oxm.XMLMarshaller
getMarshaller()
OutputStream
getOutputStream()
Writer
getWriter()
void
setMarshaller(org.eclipse.persistence.internal.oxm.XMLMarshaller marshaller)
void
write(char character)
void
write(String text)
void
writeAttributePrefix()
void
writeCR()
void
writeLocalName(org.eclipse.persistence.internal.oxm.XPathFragment xPathFragment)
void
writeNamespaceSeparator()
void
writeResultFromCharEscapeHandler(String value, boolean isAttribute)
-
-
-
Method Detail
-
flush
void flush() throws IOException
- Throws:
IOException
-
getMarshaller
org.eclipse.persistence.internal.oxm.XMLMarshaller getMarshaller()
-
getOutputStream
OutputStream getOutputStream()
-
getWriter
Writer getWriter()
-
setMarshaller
void setMarshaller(org.eclipse.persistence.internal.oxm.XMLMarshaller marshaller)
-
write
void write(char character) throws IOException
- Throws:
IOException
-
write
void write(String text) throws IOException
- Throws:
IOException
-
writeAttributePrefix
void writeAttributePrefix() throws IOException
- Throws:
IOException
-
writeCR
void writeCR() throws IOException
- Throws:
IOException
-
writeLocalName
void writeLocalName(org.eclipse.persistence.internal.oxm.XPathFragment xPathFragment) throws IOException
- Throws:
IOException
-
writeNamespaceSeparator
void writeNamespaceSeparator() throws IOException
- Throws:
IOException
-
writeResultFromCharEscapeHandler
void writeResultFromCharEscapeHandler(String value, boolean isAttribute)
-
-