Package com.amazon.ion
Interface IonBinaryWriter
- All Superinterfaces:
AutoCloseable,Closeable,Faceted,Flushable,IonWriter
- All Known Implementing Classes:
_Private_IonBinaryWriterImpl
Deprecated.
An
IonWriter that encodes Ion binary data.-
Method Summary
Modifier and TypeMethodDescriptionintbyteSize()Deprecated.byte[]getBytes()Deprecated.intgetBytes(byte[] bytes, int offset, int maxlen) Deprecated.intwriteBytes(OutputStream userstream) Deprecated.Methods inherited from interface com.amazon.ion.IonWriter
addTypeAnnotation, close, finish, flush, getSymbolTable, isInStruct, setFieldName, setFieldNameSymbol, setTypeAnnotations, setTypeAnnotationSymbols, stepIn, stepOut, writeBlob, writeBlob, writeBool, writeClob, writeClob, writeDecimal, writeFloat, writeInt, writeInt, writeNull, writeNull, writeString, writeSymbol, writeSymbolToken, writeTimestamp, writeTimestampUTC, writeValue, writeValue, writeValues
-
Method Details
-
byteSize
Deprecated.Gets the size in bytes of this binary data. This is generally needed before callinggetBytes()orgetBytes(byte[], int, int).- Returns:
- the size in bytes.
-
getBytes
Deprecated.Copies the current contents of this writer as a new byte array holding Ion binary-encoded data. This allocates an array of the size needed to exactly hold the output and copies the entire value to it.- Returns:
- the byte array with the writers output
- Throws:
IOException
-
getBytes
Deprecated.Copies the current contents of the writer to a given byte array array. This starts writing to the array at offset and writes up to maxlen bytes. If this writer is not able to stop in the middle of its work this may overwrite the array and later throw and exception.- Parameters:
bytes- users byte array to write intooffset- initial offset in the array to write intomaxlen- maximum number of bytes to write- Returns:
- number of bytes written
- Throws:
IOException
-
writeBytes
Deprecated.Writes the current contents of the writer to the output stream. This is only valid if the writer is not in the middle of writing a container.- Parameters:
userstream- OutputStream to write the bytes to- Returns:
- int length of bytes written
- Throws:
IOException
-
IonSystem.newBinaryWriter(OutputStream, SymbolTable...)instead.