com.hazelcast.nio
public interface ObjectDataOutput extends DataOutput
| Modifier and Type | Method and Description | 
|---|---|
| ByteOrder | getByteOrder() | 
| byte[] | toByteArray() | 
| 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) | 
write, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTFvoid writeByteArray(byte[] bytes)
                    throws IOException
bytes - byte 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 to be writtenIOExceptionvoid writeFloatArray(float[] values)
                     throws IOException
values - float to be writtenIOExceptionvoid writeShortArray(short[] values)
                     throws IOException
values - short to be writtenIOExceptionvoid writeObject(Object object) throws IOException
object - object to be writtenIOExceptionvoid writeData(Data data) throws IOException
data - data to be writtenIOExceptionbyte[] toByteArray()
ByteOrder getByteOrder()
Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.