Package | Description |
---|---|
org.simpleframework.common.buffer |
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
Buffer |
FilterAllocator.allocate()
This method is used to allocate a default buffer.
|
Buffer |
BufferAllocator.allocate()
This method is used to allocate a default buffer.
|
Buffer |
ArrayBuffer.allocate()
This method is used to allocate a segment of this buffer as a
separate buffer object.
|
Buffer |
Buffer.allocate()
This method is used to allocate a segment of this buffer as a
separate buffer object.
|
Buffer |
FileAllocator.allocate()
This will allocate a file buffer which will write data for the
buffer to a file.
|
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 |
BufferAllocator.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 |
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 |
ArrayBuffer.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 |
BufferAllocator.append(byte[] array,
int off,
int size)
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.
|
Buffer |
Buffer.append(byte[] array,
int off,
int len)
This method is used to append bytes to the end of the buffer.
|
Copyright © 2021. All rights reserved.