public class AlternativeCompositeByteBuf
extends io.netty.buffer.ByteBuf
| Constructor and Description |
|---|
AlternativeCompositeByteBuf(io.netty.buffer.ByteBufAllocator alloc,
boolean direct) |
AlternativeCompositeByteBuf(io.netty.buffer.ByteBufAllocator alloc,
boolean direct,
io.netty.buffer.ByteBuf... buffers) |
| Modifier and Type | Method and Description |
|---|---|
AlternativeCompositeByteBuf |
addComponent(boolean fillBuffer,
io.netty.buffer.ByteBuf... buffers) |
AlternativeCompositeByteBuf |
addComponent(io.netty.buffer.ByteBuf... buffers) |
io.netty.buffer.ByteBufAllocator |
alloc() |
byte[] |
array() |
int |
arrayOffset() |
int |
bytesBefore(byte value) |
int |
bytesBefore(int length,
byte value) |
int |
bytesBefore(int index,
int length,
byte value) |
int |
capacity() |
AlternativeCompositeByteBuf |
capacity(int newCapacity) |
AlternativeCompositeByteBuf |
capacity(int newCapacity,
boolean fillBuffer) |
AlternativeCompositeByteBuf |
clear() |
int |
compareTo(io.netty.buffer.ByteBuf that) |
static AlternativeCompositeByteBuf |
compBuffer() |
static AlternativeCompositeByteBuf |
compBuffer(boolean direct) |
static AlternativeCompositeByteBuf |
compBuffer(io.netty.buffer.ByteBuf... buffers) |
static AlternativeCompositeByteBuf |
compBuffer(io.netty.buffer.ByteBufAllocator alloc,
boolean direct,
io.netty.buffer.ByteBuf... buffers) |
static AlternativeCompositeByteBuf |
compDirectBuffer() |
static AlternativeCompositeByteBuf |
compDirectBuffer(io.netty.buffer.ByteBuf... buffers) |
io.netty.buffer.ByteBuf |
copy() |
io.netty.buffer.ByteBuf |
copy(int index,
int length) |
List<io.netty.buffer.ByteBuf> |
decompose(int offset,
int length) |
AlternativeCompositeByteBuf |
discardReadBytes() |
AlternativeCompositeByteBuf |
discardSomeReadBytes() |
io.netty.buffer.ByteBuf |
duplicate() |
io.netty.buffer.ByteBuf |
ensureWritable(int minWritableBytes) |
int |
ensureWritable(int minWritableBytes,
boolean force) |
AlternativeCompositeByteBuf |
ensureWritable0(int minWritableBytes,
boolean fillBuffer) |
boolean |
equals(Object o) |
int |
forEachByte(io.netty.buffer.ByteBufProcessor processor) |
int |
forEachByte(int index,
int length,
io.netty.buffer.ByteBufProcessor processor) |
int |
forEachByteDesc(io.netty.buffer.ByteBufProcessor processor) |
int |
forEachByteDesc(int index,
int length,
io.netty.buffer.ByteBufProcessor processor) |
boolean |
getBoolean(int index) |
byte |
getByte(int index) |
AlternativeCompositeByteBuf |
getBytes(int index,
byte[] dst) |
AlternativeCompositeByteBuf |
getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
AlternativeCompositeByteBuf |
getBytes(int index,
io.netty.buffer.ByteBuf dst) |
AlternativeCompositeByteBuf |
getBytes(int index,
ByteBuffer dst) |
AlternativeCompositeByteBuf |
getBytes(int index,
io.netty.buffer.ByteBuf dst,
int length) |
AlternativeCompositeByteBuf |
getBytes(int index,
io.netty.buffer.ByteBuf dst,
int dstIndex,
int length) |
int |
getBytes(int index,
GatheringByteChannel out,
int length) |
AlternativeCompositeByteBuf |
getBytes(int index,
OutputStream out,
int length) |
char |
getChar(int index) |
double |
getDouble(int index) |
float |
getFloat(int index) |
int |
getInt(int index) |
long |
getLong(int index) |
int |
getMedium(int index) |
short |
getShort(int index) |
short |
getUnsignedByte(int index) |
long |
getUnsignedInt(int index) |
int |
getUnsignedMedium(int index) |
int |
getUnsignedShort(int index) |
boolean |
hasArray() |
int |
hashCode() |
boolean |
hasMemoryAddress() |
int |
indexOf(int fromIndex,
int toIndex,
byte value) |
ByteBuffer |
internalNioBuffer(int index,
int length) |
boolean |
isDirect() |
boolean |
isReadable() |
boolean |
isReadable(int numBytes) |
boolean |
isWritable() |
boolean |
isWritable(int numBytes) |
AlternativeCompositeByteBuf |
markReaderIndex() |
AlternativeCompositeByteBuf |
markWriterIndex() |
int |
maxCapacity() |
int |
maxWritableBytes() |
long |
memoryAddress() |
ByteBuffer |
nioBuffer() |
ByteBuffer |
nioBuffer(int index,
int length) |
int |
nioBufferCount() |
ByteBuffer[] |
nioBuffers() |
ByteBuffer[] |
nioBuffers(int index,
int length) |
ByteOrder |
order() |
AlternativeCompositeByteBuf |
order(ByteOrder endianness) |
int |
readableBytes() |
boolean |
readBoolean() |
byte |
readByte() |
io.netty.buffer.ByteBuf |
readBytes(byte[] dst) |
io.netty.buffer.ByteBuf |
readBytes(byte[] dst,
int dstIndex,
int length) |
io.netty.buffer.ByteBuf |
readBytes(io.netty.buffer.ByteBuf dst) |
io.netty.buffer.ByteBuf |
readBytes(ByteBuffer dst) |
io.netty.buffer.ByteBuf |
readBytes(io.netty.buffer.ByteBuf dst,
int length) |
io.netty.buffer.ByteBuf |
readBytes(io.netty.buffer.ByteBuf dst,
int dstIndex,
int length) |
int |
readBytes(GatheringByteChannel out,
int length) |
io.netty.buffer.ByteBuf |
readBytes(int length) |
io.netty.buffer.ByteBuf |
readBytes(OutputStream out,
int length) |
char |
readChar() |
double |
readDouble() |
int |
readerIndex() |
AlternativeCompositeByteBuf |
readerIndex(int readerIndex) |
float |
readFloat() |
int |
readInt() |
long |
readLong() |
int |
readMedium() |
short |
readShort() |
io.netty.buffer.ByteBuf |
readSlice(int length) |
short |
readUnsignedByte() |
long |
readUnsignedInt() |
int |
readUnsignedMedium() |
int |
readUnsignedShort() |
int |
refCnt() |
boolean |
release() |
boolean |
release(int decrement) |
AlternativeCompositeByteBuf |
resetReaderIndex() |
AlternativeCompositeByteBuf |
resetWriterIndex() |
AlternativeCompositeByteBuf |
retain() |
AlternativeCompositeByteBuf |
retain(int increment) |
AlternativeCompositeByteBuf |
setBoolean(int index,
boolean value) |
AlternativeCompositeByteBuf |
setByte(int index,
int value) |
AlternativeCompositeByteBuf |
setBytes(int index,
byte[] src) |
AlternativeCompositeByteBuf |
setBytes(int index,
byte[] src,
int srcIndex,
int length) |
AlternativeCompositeByteBuf |
setBytes(int index,
io.netty.buffer.ByteBuf src) |
AlternativeCompositeByteBuf |
setBytes(int index,
ByteBuffer src) |
AlternativeCompositeByteBuf |
setBytes(int index,
io.netty.buffer.ByteBuf src,
int length) |
AlternativeCompositeByteBuf |
setBytes(int index,
io.netty.buffer.ByteBuf src,
int srcIndex,
int length) |
int |
setBytes(int index,
InputStream in,
int length) |
int |
setBytes(int index,
ScatteringByteChannel in,
int length) |
AlternativeCompositeByteBuf |
setChar(int index,
int value) |
AlternativeCompositeByteBuf |
setDouble(int index,
double value) |
AlternativeCompositeByteBuf |
setFloat(int index,
float value) |
AlternativeCompositeByteBuf |
setIndex(int readerIndex,
int writerIndex) |
AlternativeCompositeByteBuf |
setInt(int index,
int value) |
AlternativeCompositeByteBuf |
setLong(int index,
long value) |
AlternativeCompositeByteBuf |
setMedium(int index,
int value) |
AlternativeCompositeByteBuf |
setShort(int index,
int value) |
AlternativeCompositeByteBuf |
setZero(int index,
int length) |
io.netty.buffer.ByteBuf |
skipBytes(int length) |
io.netty.buffer.ByteBuf |
slice() |
io.netty.buffer.ByteBuf |
slice(int index,
int length) |
boolean |
sync() |
String |
toString() |
String |
toString(Charset charset) |
String |
toString(int index,
int length,
Charset charset) |
io.netty.buffer.ByteBuf |
unwrap() |
int |
writableBytes() |
io.netty.buffer.ByteBuf |
writeBoolean(boolean value) |
io.netty.buffer.ByteBuf |
writeByte(int value) |
io.netty.buffer.ByteBuf |
writeBytes(byte[] src) |
io.netty.buffer.ByteBuf |
writeBytes(byte[] src,
int srcIndex,
int length) |
io.netty.buffer.ByteBuf |
writeBytes(io.netty.buffer.ByteBuf src) |
io.netty.buffer.ByteBuf |
writeBytes(ByteBuffer src) |
io.netty.buffer.ByteBuf |
writeBytes(io.netty.buffer.ByteBuf src,
int length) |
io.netty.buffer.ByteBuf |
writeBytes(io.netty.buffer.ByteBuf src,
int srcIndex,
int length) |
int |
writeBytes(InputStream in,
int length) |
int |
writeBytes(ScatteringByteChannel in,
int length) |
io.netty.buffer.ByteBuf |
writeChar(int value) |
io.netty.buffer.ByteBuf |
writeDouble(double value) |
io.netty.buffer.ByteBuf |
writeFloat(float value) |
io.netty.buffer.ByteBuf |
writeInt(int value) |
io.netty.buffer.ByteBuf |
writeLong(long value) |
io.netty.buffer.ByteBuf |
writeMedium(int value) |
int |
writerIndex() |
AlternativeCompositeByteBuf |
writerIndex(int writerIndex) |
io.netty.buffer.ByteBuf |
writeShort(int value) |
io.netty.buffer.ByteBuf |
writeZero(int length) |
public AlternativeCompositeByteBuf(io.netty.buffer.ByteBufAllocator alloc,
boolean direct)
public AlternativeCompositeByteBuf(io.netty.buffer.ByteBufAllocator alloc,
boolean direct,
io.netty.buffer.ByteBuf... buffers)
public int refCnt()
public boolean release()
public boolean release(int decrement)
public AlternativeCompositeByteBuf retain(int increment)
retain in interface io.netty.util.ReferenceCountedretain in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf retain()
retain in interface io.netty.util.ReferenceCountedretain in class io.netty.buffer.ByteBufpublic int capacity()
capacity in class io.netty.buffer.ByteBufpublic int maxCapacity()
maxCapacity in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf capacity(int newCapacity)
capacity in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf capacity(int newCapacity, boolean fillBuffer)
public AlternativeCompositeByteBuf addComponent(io.netty.buffer.ByteBuf... buffers)
public AlternativeCompositeByteBuf addComponent(boolean fillBuffer, io.netty.buffer.ByteBuf... buffers)
public io.netty.buffer.ByteBufAllocator alloc()
alloc in class io.netty.buffer.ByteBufpublic ByteOrder order()
order in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf order(ByteOrder endianness)
order in class io.netty.buffer.ByteBufpublic boolean isDirect()
isDirect in class io.netty.buffer.ByteBufpublic int readerIndex()
readerIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf readerIndex(int readerIndex)
readerIndex in class io.netty.buffer.ByteBufpublic int writerIndex()
writerIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf writerIndex(int writerIndex)
writerIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setIndex(int readerIndex, int writerIndex)
setIndex in class io.netty.buffer.ByteBufpublic int readableBytes()
readableBytes in class io.netty.buffer.ByteBufpublic int writableBytes()
writableBytes in class io.netty.buffer.ByteBufpublic int maxWritableBytes()
maxWritableBytes in class io.netty.buffer.ByteBufpublic boolean isReadable()
isReadable in class io.netty.buffer.ByteBufpublic boolean isReadable(int numBytes)
isReadable in class io.netty.buffer.ByteBufpublic boolean isWritable()
isWritable in class io.netty.buffer.ByteBufpublic boolean isWritable(int numBytes)
isWritable in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf unwrap()
unwrap in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf clear()
clear in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf markReaderIndex()
markReaderIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf resetReaderIndex()
resetReaderIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf markWriterIndex()
markWriterIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf resetWriterIndex()
resetWriterIndex in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf discardReadBytes()
discardReadBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf discardSomeReadBytes()
discardSomeReadBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf ensureWritable(int minWritableBytes)
ensureWritable in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf ensureWritable0(int minWritableBytes, boolean fillBuffer)
public int ensureWritable(int minWritableBytes,
boolean force)
ensureWritable in class io.netty.buffer.ByteBufpublic boolean getBoolean(int index)
getBoolean in class io.netty.buffer.ByteBufpublic byte getByte(int index)
getByte in class io.netty.buffer.ByteBufpublic short getUnsignedByte(int index)
getUnsignedByte in class io.netty.buffer.ByteBufpublic short getShort(int index)
getShort in class io.netty.buffer.ByteBufpublic int getUnsignedShort(int index)
getUnsignedShort in class io.netty.buffer.ByteBufpublic int getMedium(int index)
getMedium in class io.netty.buffer.ByteBufpublic int getUnsignedMedium(int index)
getUnsignedMedium in class io.netty.buffer.ByteBufpublic int getInt(int index)
getInt in class io.netty.buffer.ByteBufpublic long getUnsignedInt(int index)
getUnsignedInt in class io.netty.buffer.ByteBufpublic long getLong(int index)
getLong in class io.netty.buffer.ByteBufpublic char getChar(int index)
getChar in class io.netty.buffer.ByteBufpublic float getFloat(int index)
getFloat in class io.netty.buffer.ByteBufpublic double getDouble(int index)
getDouble in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, io.netty.buffer.ByteBuf dst)
getBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, io.netty.buffer.ByteBuf dst, int length)
getBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, io.netty.buffer.ByteBuf dst, int dstIndex, int length)
getBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, byte[] dst)
getBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, byte[] dst, int dstIndex, int length)
getBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, ByteBuffer dst)
getBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf getBytes(int index, OutputStream out, int length) throws IOException
getBytes in class io.netty.buffer.ByteBufIOExceptionpublic int getBytes(int index,
GatheringByteChannel out,
int length)
throws IOException
getBytes in class io.netty.buffer.ByteBufIOExceptionpublic AlternativeCompositeByteBuf setBoolean(int index, boolean value)
setBoolean in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setByte(int index, int value)
setByte in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setShort(int index, int value)
setShort in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setMedium(int index, int value)
setMedium in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setInt(int index, int value)
setInt in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setLong(int index, long value)
setLong in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setChar(int index, int value)
setChar in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setFloat(int index, float value)
setFloat in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setDouble(int index, double value)
setDouble in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setBytes(int index, io.netty.buffer.ByteBuf src)
setBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setBytes(int index, io.netty.buffer.ByteBuf src, int length)
setBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setBytes(int index, io.netty.buffer.ByteBuf src, int srcIndex, int length)
setBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setBytes(int index, byte[] src)
setBytes in class io.netty.buffer.ByteBufpublic AlternativeCompositeByteBuf setBytes(int index, byte[] src, int srcIndex, int length)
setBytes in class io.netty.buffer.ByteBufpublic boolean sync()
public AlternativeCompositeByteBuf setBytes(int index, ByteBuffer src)
setBytes in class io.netty.buffer.ByteBufpublic int setBytes(int index,
InputStream in,
int length)
throws IOException
setBytes in class io.netty.buffer.ByteBufIOExceptionpublic int setBytes(int index,
ScatteringByteChannel in,
int length)
throws IOException
setBytes in class io.netty.buffer.ByteBufIOExceptionpublic AlternativeCompositeByteBuf setZero(int index, int length)
setZero in class io.netty.buffer.ByteBufpublic boolean readBoolean()
readBoolean in class io.netty.buffer.ByteBufpublic byte readByte()
readByte in class io.netty.buffer.ByteBufpublic short readUnsignedByte()
readUnsignedByte in class io.netty.buffer.ByteBufpublic short readShort()
readShort in class io.netty.buffer.ByteBufpublic int readUnsignedShort()
readUnsignedShort in class io.netty.buffer.ByteBufpublic int readMedium()
readMedium in class io.netty.buffer.ByteBufpublic int readUnsignedMedium()
readUnsignedMedium in class io.netty.buffer.ByteBufpublic int readInt()
readInt in class io.netty.buffer.ByteBufpublic long readUnsignedInt()
readUnsignedInt in class io.netty.buffer.ByteBufpublic long readLong()
readLong in class io.netty.buffer.ByteBufpublic char readChar()
readChar in class io.netty.buffer.ByteBufpublic float readFloat()
readFloat in class io.netty.buffer.ByteBufpublic double readDouble()
readDouble in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(int length)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readSlice(int length)
readSlice in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(io.netty.buffer.ByteBuf dst)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(io.netty.buffer.ByteBuf dst,
int length)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(io.netty.buffer.ByteBuf dst,
int dstIndex,
int length)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(byte[] dst)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(byte[] dst,
int dstIndex,
int length)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(ByteBuffer dst)
readBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf readBytes(OutputStream out, int length) throws IOException
readBytes in class io.netty.buffer.ByteBufIOExceptionpublic int readBytes(GatheringByteChannel out, int length) throws IOException
readBytes in class io.netty.buffer.ByteBufIOExceptionpublic io.netty.buffer.ByteBuf skipBytes(int length)
skipBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBoolean(boolean value)
writeBoolean in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeByte(int value)
writeByte in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeShort(int value)
writeShort in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeMedium(int value)
writeMedium in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeInt(int value)
writeInt in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeLong(long value)
writeLong in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeChar(int value)
writeChar in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeFloat(float value)
writeFloat in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeDouble(double value)
writeDouble in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBytes(io.netty.buffer.ByteBuf src)
writeBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBytes(io.netty.buffer.ByteBuf src,
int length)
writeBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBytes(io.netty.buffer.ByteBuf src,
int srcIndex,
int length)
writeBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBytes(byte[] src)
writeBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBytes(byte[] src,
int srcIndex,
int length)
writeBytes in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf writeBytes(ByteBuffer src)
writeBytes in class io.netty.buffer.ByteBufpublic int writeBytes(InputStream in, int length) throws IOException
writeBytes in class io.netty.buffer.ByteBufIOExceptionpublic int writeBytes(ScatteringByteChannel in, int length) throws IOException
writeBytes in class io.netty.buffer.ByteBufIOExceptionpublic io.netty.buffer.ByteBuf writeZero(int length)
writeZero in class io.netty.buffer.ByteBufpublic int indexOf(int fromIndex,
int toIndex,
byte value)
indexOf in class io.netty.buffer.ByteBufpublic int bytesBefore(byte value)
bytesBefore in class io.netty.buffer.ByteBufpublic int bytesBefore(int length,
byte value)
bytesBefore in class io.netty.buffer.ByteBufpublic int bytesBefore(int index,
int length,
byte value)
bytesBefore in class io.netty.buffer.ByteBufpublic int forEachByte(io.netty.buffer.ByteBufProcessor processor)
forEachByte in class io.netty.buffer.ByteBufpublic int forEachByte(int index,
int length,
io.netty.buffer.ByteBufProcessor processor)
forEachByte in class io.netty.buffer.ByteBufpublic int forEachByteDesc(io.netty.buffer.ByteBufProcessor processor)
forEachByteDesc in class io.netty.buffer.ByteBufpublic int forEachByteDesc(int index,
int length,
io.netty.buffer.ByteBufProcessor processor)
forEachByteDesc in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf copy()
copy in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf copy(int index,
int length)
copy in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf slice()
slice in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf slice(int index,
int length)
slice in class io.netty.buffer.ByteBufpublic io.netty.buffer.ByteBuf duplicate()
duplicate in class io.netty.buffer.ByteBufpublic int nioBufferCount()
nioBufferCount in class io.netty.buffer.ByteBufpublic ByteBuffer nioBuffer()
nioBuffer in class io.netty.buffer.ByteBufpublic ByteBuffer nioBuffer(int index, int length)
nioBuffer in class io.netty.buffer.ByteBufpublic ByteBuffer internalNioBuffer(int index, int length)
internalNioBuffer in class io.netty.buffer.ByteBufpublic ByteBuffer[] nioBuffers()
nioBuffers in class io.netty.buffer.ByteBufpublic ByteBuffer[] nioBuffers(int index, int length)
nioBuffers in class io.netty.buffer.ByteBufpublic boolean hasArray()
hasArray in class io.netty.buffer.ByteBufpublic byte[] array()
array in class io.netty.buffer.ByteBufpublic int arrayOffset()
arrayOffset in class io.netty.buffer.ByteBufpublic boolean hasMemoryAddress()
hasMemoryAddress in class io.netty.buffer.ByteBufpublic long memoryAddress()
memoryAddress in class io.netty.buffer.ByteBufpublic String toString(Charset charset)
toString in class io.netty.buffer.ByteBufpublic String toString(int index, int length, Charset charset)
toString in class io.netty.buffer.ByteBufpublic int hashCode()
hashCode in class io.netty.buffer.ByteBufpublic boolean equals(Object o)
equals in class io.netty.buffer.ByteBufpublic int compareTo(io.netty.buffer.ByteBuf that)
compareTo in interface Comparable<io.netty.buffer.ByteBuf>compareTo in class io.netty.buffer.ByteBufpublic String toString()
toString in class io.netty.buffer.ByteBufpublic List<io.netty.buffer.ByteBuf> decompose(int offset, int length)
public static AlternativeCompositeByteBuf compBuffer(io.netty.buffer.ByteBufAllocator alloc, boolean direct, io.netty.buffer.ByteBuf... buffers)
public static AlternativeCompositeByteBuf compBuffer(boolean direct)
public static AlternativeCompositeByteBuf compBuffer()
public static AlternativeCompositeByteBuf compDirectBuffer()
public static AlternativeCompositeByteBuf compDirectBuffer(io.netty.buffer.ByteBuf... buffers)
public static AlternativeCompositeByteBuf compBuffer(io.netty.buffer.ByteBuf... buffers)
Copyright © 2014. All rights reserved.