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

Packages that use Buffer
org.simpleframework.util.buffer   
 

Uses of Buffer in org.simpleframework.util.buffer
 

Classes in org.simpleframework.util.buffer that implement Buffer
 class ArrayBuffer
          The ArrayBuffer is intended to be a general purpose byte buffer that stores bytes in an single internal byte array.
 class BufferAllocator
          The BufferAllocator object is used to provide a means to allocate buffers using a single underlying buffer.
 

Methods in org.simpleframework.util.buffer that return Buffer
 Buffer FilterAllocator.allocate()
          This method is used to allocate a default buffer.
 Buffer FileAllocator.allocate()
          This will allocate a file buffer which will write data for the buffer to a file.
 Buffer BufferAllocator.allocate()
          This method is used to allocate a default buffer.
 Buffer Buffer.allocate()
          This method is used to allocate a segment of this buffer as a separate buffer object.
 Buffer ArrayBuffer.allocate()
          This method is used to allocate a segment of this buffer as a separate buffer object.
 Buffer ArrayAllocator.allocate()
          This method is used to allocate a default buffer.
 Buffer Allocator.allocate()
          This method is used to allocate a default buffer.
 Buffer FilterAllocator.allocate(long size)
          This method is used to allocate a default buffer.
 Buffer FileAllocator.allocate(long size)
          This will allocate a file buffer which will write data for the buffer to a file.
 Buffer BufferAllocator.allocate(long size)
          This method is used to allocate a default buffer.
 Buffer ArrayAllocator.allocate(long size)
          This method is used to allocate a default buffer.
 Buffer Allocator.allocate(long size)
          This method is used to allocate a default buffer.
 Buffer BufferAllocator.append(byte[] array)
          This method is used to append bytes to the end of the buffer.
 Buffer Buffer.append(byte[] array)
          This method is used to append bytes to the end of the buffer.
 Buffer ArrayBuffer.append(byte[] array)
          This method is used to append bytes to the end of the buffer.
 Buffer BufferAllocator.append(byte[] array, int off, int size)
          This method is used to append bytes to the end of the buffer.
 Buffer Buffer.append(byte[] array, int off, int len)
          This method is used to append bytes to the end of the buffer.
 Buffer ArrayBuffer.append(byte[] array, int off, int size)
          This method is used to append bytes to the end of the buffer.
 



Copyright © 2013. All Rights Reserved.