public interface ObjectDataOutput extends DataOutput, VersionAware
| Modifier and Type | Method and Description | 
|---|---|
| ByteOrder | getByteOrder() | 
| SerializationService | getSerializationService() | 
| byte[] | toByteArray() | 
| byte[] | toByteArray(int padding) | 
| void | writeBooleanArray(boolean[] booleans) | 
| void | writeByteArray(byte[] bytes) | 
| void | writeCharArray(char[] chars) | 
| void | writeData(Data data) | 
| void | writeDoubleArray(double[] values) | 
| void | writeFloatArray(float[] values) | 
| void | writeIntArray(int[] ints) | 
| void | writeLongArray(long[] longs) | 
| void | writeObject(Object object) | 
| void | writeShortArray(short[] values) | 
| void | writeUTFArray(String[] values) | 
write, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTFgetVersionvoid writeByteArray(byte[] bytes)
             throws IOException
bytes - byte array to be writtenIOExceptionvoid writeBooleanArray(boolean[] booleans)
                throws IOException
booleans - boolean array to be writtenIOExceptionvoid writeCharArray(char[] chars)
             throws IOException
chars - char array to be writtenIOExceptionvoid writeIntArray(int[] ints)
            throws IOException
ints - int array to be writtenIOExceptionvoid writeLongArray(long[] longs)
             throws IOException
longs - long array to be writtenIOExceptionvoid writeDoubleArray(double[] values)
               throws IOException
values - double array to be writtenIOExceptionvoid writeFloatArray(float[] values)
              throws IOException
values - float array to be writtenIOExceptionvoid writeShortArray(short[] values)
              throws IOException
values - short array to be writtenIOExceptionvoid writeUTFArray(String[] values) throws IOException
values - String array to be writtenIOExceptionvoid writeObject(Object object) throws IOException
object - object to be writtenIOExceptionvoid writeData(Data data) throws IOException
data - data to be writtenIOExceptionbyte[] toByteArray()
byte[] toByteArray(int padding)
padding - padding bytes at the beginning of the byte-array.ByteOrder getByteOrder()
SerializationService getSerializationService()
Copyright © 2022 Hazelcast, Inc.. All Rights Reserved.