Uses of Interface
org.simpleframework.common.buffer.Buffer

Packages that use Buffer
Package
Description
 
  • Uses of Buffer in org.simpleframework.common.buffer

    Classes in org.simpleframework.common.buffer that implement Buffer
    Modifier and Type
    Class
    Description
    class 
    The ArrayBuffer is intended to be a general purpose byte buffer that stores bytes in an single internal byte array.
    class 
    The BufferAllocator object is used to provide a means to allocate buffers using a single underlying buffer.
    Modifier and Type
    Method
    Description
    Allocator.allocate()
    This method is used to allocate a default buffer.
    Allocator.allocate(long size)
    This method is used to allocate a default buffer.
    ArrayAllocator.allocate()
    This method is used to allocate a default buffer.
    ArrayAllocator.allocate(long size)
    This method is used to allocate a default buffer.
    ArrayBuffer.allocate()
    This method is used to allocate a segment of this buffer as a separate buffer object.
    Buffer.allocate()
    This method is used to allocate a segment of this buffer as a separate buffer object.
    BufferAllocator.allocate()
    This method is used to allocate a default buffer.
    BufferAllocator.allocate(long size)
    This method is used to allocate a default buffer.
    FileAllocator.allocate()
    This will allocate a file buffer which will write data for the buffer to a file.
    FileAllocator.allocate(long size)
    This will allocate a file buffer which will write data for the buffer to a file.
    FilterAllocator.allocate()
    This method is used to allocate a default buffer.
    FilterAllocator.allocate(long size)
    This method is used to allocate a default buffer.
    ArrayBuffer.append(byte[] array)
    This method is used to append bytes to the end of the buffer.
    ArrayBuffer.append(byte[] array, int off, int size)
    This method is used to append bytes to the end of the buffer.
    Buffer.append(byte[] array)
    This method is used to append bytes to the end of the buffer.
    Buffer.append(byte[] array, int off, int len)
    This method is used to append bytes to the end of the buffer.
    BufferAllocator.append(byte[] array)
    This method is used to append bytes to the end of the buffer.
    BufferAllocator.append(byte[] array, int off, int size)
    This method is used to append bytes to the end of the buffer.