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()
java.io.OutputStream
getOutputStream()
java.io.Writer
getWriter()
void
setMarshaller(org.eclipse.persistence.internal.oxm.XMLMarshaller marshaller)
void
write(char character)
void
write(java.lang.String text)
void
writeAttributePrefix()
void
writeCR()
void
writeLocalName(org.eclipse.persistence.internal.oxm.XPathFragment xPathFragment)
void
writeNamespaceSeparator()
void
writeResultFromCharEscapeHandler(java.lang.String value, boolean isAttribute)
-
-
-
Method Detail
-
flush
void flush() throws java.io.IOException
- Throws:
java.io.IOException
-
getMarshaller
org.eclipse.persistence.internal.oxm.XMLMarshaller getMarshaller()
-
getOutputStream
java.io.OutputStream getOutputStream()
-
getWriter
java.io.Writer getWriter()
-
setMarshaller
void setMarshaller(org.eclipse.persistence.internal.oxm.XMLMarshaller marshaller)
-
write
void write(char character) throws java.io.IOException
- Throws:
java.io.IOException
-
write
void write(java.lang.String text) throws java.io.IOException
- Throws:
java.io.IOException
-
writeAttributePrefix
void writeAttributePrefix() throws java.io.IOException
- Throws:
java.io.IOException
-
writeCR
void writeCR() throws java.io.IOException
- Throws:
java.io.IOException
-
writeLocalName
void writeLocalName(org.eclipse.persistence.internal.oxm.XPathFragment xPathFragment) throws java.io.IOException
- Throws:
java.io.IOException
-
writeNamespaceSeparator
void writeNamespaceSeparator() throws java.io.IOException
- Throws:
java.io.IOException
-
writeResultFromCharEscapeHandler
void writeResultFromCharEscapeHandler(java.lang.String value, boolean isAttribute)
-
-