Maven module :un.api : api-encoding :
Class : un.api.io.AbstractSeekableByteBuffer
Extends/Implements : un.api.io.SeekableByteBuffer
Subclasses : -

Abstract seekable byte buffer.
All read,write,resize operations will raise an IOException.
Read operations are redirected on read(byte[] buffer, int offset, int length)
Write operations are redirected on write(byte[] buffer, int offset, int length)
Insert operations are redirected on insert(byte[] buffer, int offset, int length)
author  Johann Sorel


Variables : -
Functions : isReadable, isWritable, isResizable, read, read, read, read, skip, skipAll, write, write, write, insert, insert, insert, remove, flush, dispose



public boolean isReadable ()

public boolean isWritable ()

public boolean isResizable ()

public int read ()

public byte[] read (int nb)

public byte[] read (byte[] buffer)

public byte[] read (byte[] buffer, int offset, int length)

public long skip (long nb)

public void skipAll (long nb)

public void write (byte b)

public void write (byte[] buffer)

public void write (byte[] buffer, int offset, int length)

public void insert (byte b)

public void insert (byte[] buffer)

public void insert (byte[] buffer, int offset, int length)

public void remove (int nb)

public void flush ()

public void dispose ()