- BIG_ENDIAN - Static variable in class io.netty.buffer.Unpooled
-
Big endian byte order.
- buffer() - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- buffer(int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- buffer(int, int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- buffer() - Method in interface io.netty.buffer.ByteBufAllocator
-
- buffer(int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a
ByteBuf
with the given initial capacity.
- buffer(int, int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a
ByteBuf
with the given initial capacity and the given
maximal capacity.
- buffer() - Method in class io.netty.buffer.ByteBufOutputStream
-
Returns the buffer where this stream is writing data.
- buffer() - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian Java heap buffer with reasonably small initial capacity, which
expands its capacity boundlessly on demand.
- buffer(int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian Java heap buffer with the specified capacity
, which
expands its capacity boundlessly on demand.
- buffer(int, int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian Java heap buffer with the specified
initialCapacity
, that may grow up to maxCapacity
The new buffer's readerIndex
and writerIndex
are
0
.
- ByteBuf - Class in io.netty.buffer
-
A random and sequential accessible sequence of zero or more bytes (octets).
- ByteBuf() - Constructor for class io.netty.buffer.ByteBuf
-
- ByteBufAllocator - Interface in io.netty.buffer
-
Implementations are responsible to allocate buffers.
- ByteBufAllocatorMetric - Interface in io.netty.buffer
-
- ByteBufAllocatorMetricProvider - Interface in io.netty.buffer
-
- ByteBufHolder - Interface in io.netty.buffer
-
A packet which is send or receive.
- ByteBufInputStream - Class in io.netty.buffer
-
- ByteBufInputStream(ByteBuf) - Constructor for class io.netty.buffer.ByteBufInputStream
-
Creates a new stream which reads data from the specified buffer
starting at the current readerIndex
and ending at the current
writerIndex
.
- ByteBufInputStream(ByteBuf, int) - Constructor for class io.netty.buffer.ByteBufInputStream
-
Creates a new stream which reads data from the specified buffer
starting at the current readerIndex
and ending at
readerIndex + length
.
- ByteBufInputStream(ByteBuf, boolean) - Constructor for class io.netty.buffer.ByteBufInputStream
-
Creates a new stream which reads data from the specified buffer
starting at the current readerIndex
and ending at the current
writerIndex
.
- ByteBufInputStream(ByteBuf, int, boolean) - Constructor for class io.netty.buffer.ByteBufInputStream
-
Creates a new stream which reads data from the specified buffer
starting at the current readerIndex
and ending at
readerIndex + length
.
- ByteBufOutputStream - Class in io.netty.buffer
-
- ByteBufOutputStream(ByteBuf) - Constructor for class io.netty.buffer.ByteBufOutputStream
-
Creates a new stream which writes data to the specified buffer
.
- ByteBufProcessor - Interface in io.netty.buffer
-
- ByteBufUtil - Class in io.netty.buffer
-
A collection of utility methods that is related with handling
ByteBuf
,
such as the generation of hex dump and swapping an integer's byte order.
- bytesBefore(byte) - Method in class io.netty.buffer.AbstractByteBuf
-
- bytesBefore(int, byte) - Method in class io.netty.buffer.AbstractByteBuf
-
- bytesBefore(int, int, byte) - Method in class io.netty.buffer.AbstractByteBuf
-
- bytesBefore(byte) - Method in class io.netty.buffer.ByteBuf
-
Locates the first occurrence of the specified value
in this
buffer.
- bytesBefore(int, byte) - Method in class io.netty.buffer.ByteBuf
-
Locates the first occurrence of the specified value
in this
buffer.
- bytesBefore(int, int, byte) - Method in class io.netty.buffer.ByteBuf
-
Locates the first occurrence of the specified value
in this
buffer.
- bytesBefore(byte) - Method in class io.netty.buffer.EmptyByteBuf
-
- bytesBefore(int, byte) - Method in class io.netty.buffer.EmptyByteBuf
-
- bytesBefore(int, int, byte) - Method in class io.netty.buffer.EmptyByteBuf
-
- bytesBefore(byte) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- bytesBefore(int, byte) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- bytesBefore(int, int, byte) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- calculateNewCapacity(int, int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- calculateNewCapacity(int, int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Calculate the new capacity of a
ByteBuf
that is used when a
ByteBuf
needs to expand by the
minNewCapacity
with
maxCapacity
as upper-bound.
- capacity() - Method in class io.netty.buffer.ByteBuf
-
Returns the number of bytes (octets) this buffer can contain.
- capacity(int) - Method in class io.netty.buffer.ByteBuf
-
Adjusts the capacity of this buffer.
- capacity() - Method in class io.netty.buffer.CompositeByteBuf
-
- capacity(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- capacity() - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- capacity(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- capacity() - Method in class io.netty.buffer.EmptyByteBuf
-
- capacity(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- capacity() - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- capacity(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- capacity() - Method in class io.netty.buffer.SlicedByteBuf
-
Deprecated.
- capacity() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- capacity(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- capacity() - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- capacity(int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- capacity() - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- capacity(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- capacity() - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- capacity(int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- checkDstIndex(int, int, int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- checkIndex(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- checkIndex(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- checkNewCapacity(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- checkReadableBytes(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- checkSrcIndex(int, int, int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- chunkLists() - Method in interface io.netty.buffer.PoolArenaMetric
-
- chunkSize() - Method in interface io.netty.buffer.PoolChunkMetric
-
Return the size of the chunk in bytes, this is the maximum of bytes that can be served out of the chunk.
- chunkSize() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- chunkSize() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
Return the chunk size for an arena.
- clear() - Method in class io.netty.buffer.AbstractByteBuf
-
- clear() - Method in class io.netty.buffer.ByteBuf
-
Sets the readerIndex
and writerIndex
of this buffer to
0
.
- clear() - Method in class io.netty.buffer.CompositeByteBuf
-
- clear() - Method in class io.netty.buffer.EmptyByteBuf
-
- clear() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- close() - Method in class io.netty.buffer.ByteBufInputStream
-
- compare(ByteBuf, ByteBuf) - Static method in class io.netty.buffer.ByteBufUtil
-
- compareTo(ByteBuf) - Method in class io.netty.buffer.AbstractByteBuf
-
- compareTo(ByteBuf) - Method in class io.netty.buffer.ByteBuf
-
Compares the content of the specified buffer to the content of this
buffer.
- compareTo(ByteBuf) - Method in class io.netty.buffer.EmptyByteBuf
-
- compareTo(ByteBuf) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- component(int) - Method in class io.netty.buffer.CompositeByteBuf
-
Return the
ByteBuf
on the specified index
- componentAtOffset(int) - Method in class io.netty.buffer.CompositeByteBuf
-
Return the
ByteBuf
on the specified index
- compositeBuffer() - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- compositeBuffer(int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- compositeBuffer() - Method in interface io.netty.buffer.ByteBufAllocator
-
- compositeBuffer(int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a
CompositeByteBuf
with the given maximum number of components that can be stored in it.
- compositeBuffer() - Static method in class io.netty.buffer.Unpooled
-
Returns a new big-endian composite buffer with no components.
- compositeBuffer(int) - Static method in class io.netty.buffer.Unpooled
-
Returns a new big-endian composite buffer with no components.
- CompositeByteBuf - Class in io.netty.buffer
-
A virtual buffer which shows multiple buffers as a single merged buffer.
- CompositeByteBuf(ByteBufAllocator, boolean, int) - Constructor for class io.netty.buffer.CompositeByteBuf
-
- CompositeByteBuf(ByteBufAllocator, boolean, int, ByteBuf...) - Constructor for class io.netty.buffer.CompositeByteBuf
-
- CompositeByteBuf(ByteBufAllocator, boolean, int, Iterable<ByteBuf>) - Constructor for class io.netty.buffer.CompositeByteBuf
-
- compositeDirectBuffer() - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- compositeDirectBuffer(int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- compositeDirectBuffer() - Method in interface io.netty.buffer.ByteBufAllocator
-
- compositeDirectBuffer(int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a direct
CompositeByteBuf
with the given maximum number of components that can be stored in it.
- compositeDirectBuffer(int) - Method in class io.netty.buffer.UnpooledByteBufAllocator
-
- compositeHeapBuffer() - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- compositeHeapBuffer(int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- compositeHeapBuffer() - Method in interface io.netty.buffer.ByteBufAllocator
-
- compositeHeapBuffer(int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a heap
CompositeByteBuf
with the given maximum number of components that can be stored in it.
- compositeHeapBuffer(int) - Method in class io.netty.buffer.UnpooledByteBufAllocator
-
- consolidate() - Method in class io.netty.buffer.CompositeByteBuf
-
- consolidate(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- content() - Method in interface io.netty.buffer.ByteBufHolder
-
- content() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- contentToString() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- copiedBuffer(byte[]) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is a copy of the
specified array
.
- copiedBuffer(byte[], int, int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is a copy of the
specified array
's sub-region.
- copiedBuffer(ByteBuffer) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer whose content is a copy of the specified
buffer
's current slice.
- copiedBuffer(ByteBuf) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer whose content is a copy of the specified
buffer
's readable bytes.
- copiedBuffer(byte[]...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is a merged copy of
the specified arrays
.
- copiedBuffer(ByteBuf...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer whose content is a merged copy of the specified
buffers
' readable bytes.
- copiedBuffer(ByteBuffer...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer whose content is a merged copy of the specified
buffers
' slices.
- copiedBuffer(CharSequence, Charset) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is the specified
string
encoded in the specified charset
.
- copiedBuffer(CharSequence, int, int, Charset) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is a subregion of
the specified string
encoded in the specified charset
.
- copiedBuffer(char[], Charset) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is the specified
array
encoded in the specified charset
.
- copiedBuffer(char[], int, int, Charset) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer whose content is a subregion of
the specified array
encoded in the specified charset
.
- copy() - Method in class io.netty.buffer.AbstractByteBuf
-
- copy() - Method in class io.netty.buffer.ByteBuf
-
Returns a copy of this buffer's readable bytes.
- copy(int, int) - Method in class io.netty.buffer.ByteBuf
-
Returns a copy of this buffer's sub-region.
- copy() - Method in interface io.netty.buffer.ByteBufHolder
-
- copy(AsciiString, ByteBuf) - Static method in class io.netty.buffer.ByteBufUtil
-
- copy(AsciiString, int, ByteBuf, int, int) - Static method in class io.netty.buffer.ByteBufUtil
-
- copy(AsciiString, int, ByteBuf, int) - Static method in class io.netty.buffer.ByteBufUtil
-
- copy(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- copy() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- copy(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- copy() - Method in class io.netty.buffer.EmptyByteBuf
-
- copy(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- copy(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- copy() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- copy(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- copy(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- copy(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- copy(int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- copyBoolean(boolean) - Static method in class io.netty.buffer.Unpooled
-
Creates a new single-byte big-endian buffer that holds the specified boolean value.
- copyBoolean(boolean...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified boolean values.
- copyDouble(double) - Static method in class io.netty.buffer.Unpooled
-
Creates a new 8-byte big-endian buffer that holds the specified 64-bit floating point number.
- copyDouble(double...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified 64-bit floating point numbers.
- copyFloat(float) - Static method in class io.netty.buffer.Unpooled
-
Creates a new 4-byte big-endian buffer that holds the specified 32-bit floating point number.
- copyFloat(float...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified 32-bit floating point numbers.
- copyInt(int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new 4-byte big-endian buffer that holds the specified 32-bit integer.
- copyInt(int...) - Static method in class io.netty.buffer.Unpooled
-
Create a big-endian buffer that holds a sequence of the specified 32-bit integers.
- copyLong(long) - Static method in class io.netty.buffer.Unpooled
-
Creates a new 8-byte big-endian buffer that holds the specified 64-bit integer.
- copyLong(long...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified 64-bit integers.
- copyMedium(int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new 3-byte big-endian buffer that holds the specified 24-bit integer.
- copyMedium(int...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified 24-bit integers.
- copyShort(int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new 2-byte big-endian buffer that holds the specified 16-bit integer.
- copyShort(short...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified 16-bit integers.
- copyShort(int...) - Static method in class io.netty.buffer.Unpooled
-
Create a new big-endian buffer that holds a sequence of the specified 16-bit integers.
- deallocate() - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
- deallocate() - Method in class io.netty.buffer.CompositeByteBuf
-
- deallocate() - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- deallocate() - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- deallocate() - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- decodeHexByte(CharSequence, int) - Static method in class io.netty.buffer.ByteBufUtil
-
Decode a 2-digit hex byte from within a string.
- decodeHexDump(CharSequence) - Static method in class io.netty.buffer.ByteBufUtil
-
- decodeHexDump(CharSequence, int, int) - Static method in class io.netty.buffer.ByteBufUtil
-
- decompose(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- DEFAULT - Static variable in interface io.netty.buffer.ByteBufAllocator
-
- DEFAULT - Static variable in class io.netty.buffer.PooledByteBufAllocator
-
- DEFAULT - Static variable in class io.netty.buffer.UnpooledByteBufAllocator
-
Default instance which uses leak-detection for direct buffers.
- DefaultByteBufHolder - Class in io.netty.buffer
-
- DefaultByteBufHolder(ByteBuf) - Constructor for class io.netty.buffer.DefaultByteBufHolder
-
- defaultMaxOrder() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default maximum order - System Property: io.netty.allocator.maxOrder - default 11
- defaultNormalCacheSize() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default normal cache size - System Property: io.netty.allocator.normalCacheSize - default 64
- defaultNumDirectArena() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default number of direct arenas - System Property: io.netty.allocator.numDirectArenas - default 2 * cores
- defaultNumHeapArena() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default number of heap arenas - System Property: io.netty.allocator.numHeapArenas - default 2 * cores
- defaultPageSize() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default buffer page size - System Property: io.netty.allocator.pageSize - default 8192
- defaultPreferDirect() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default prefer direct - System Property: io.netty.noPreferDirect - default false
- defaultSmallCacheSize() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default small cache size - System Property: io.netty.allocator.smallCacheSize - default 256
- defaultTinyCacheSize() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default tiny cache size - System Property: io.netty.allocator.tinyCacheSize - default 512
- defaultUseCacheForAllThreads() - Static method in class io.netty.buffer.PooledByteBufAllocator
-
Default thread caching behavior - System Property: io.netty.allocator.useCacheForAllThreads - default true
- directArenas() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- directArenas() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
- directBuffer() - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- directBuffer(int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- directBuffer(int, int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
- directBuffer() - Method in interface io.netty.buffer.ByteBufAllocator
-
- directBuffer(int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a direct
ByteBuf
with the given initial capacity.
- directBuffer(int, int) - Method in interface io.netty.buffer.ByteBufAllocator
-
Allocate a direct
ByteBuf
with the given initial capacity and the given
maximal capacity.
- directBuffer() - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian direct buffer with reasonably small initial capacity, which
expands its capacity boundlessly on demand.
- directBuffer(int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian direct buffer with the specified capacity
, which
expands its capacity boundlessly on demand.
- directBuffer(int, int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian direct buffer with the specified
initialCapacity
, that may grow up to maxCapacity
.
- discardReadBytes() - Method in class io.netty.buffer.AbstractByteBuf
-
- discardReadBytes() - Method in class io.netty.buffer.ByteBuf
-
Discards the bytes between the 0th index and readerIndex
.
- discardReadBytes() - Method in class io.netty.buffer.CompositeByteBuf
-
- discardReadBytes() - Method in class io.netty.buffer.EmptyByteBuf
-
- discardReadBytes() - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- discardReadBytes() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- discardReadComponents() - Method in class io.netty.buffer.CompositeByteBuf
-
Discard all
ByteBuf
s which are read.
- discardSomeReadBytes() - Method in class io.netty.buffer.AbstractByteBuf
-
- discardSomeReadBytes() - Method in class io.netty.buffer.ByteBuf
-
Similar to
ByteBuf.discardReadBytes()
except that this method might discard
some, all, or none of read bytes depending on its internal implementation to reduce
overall memory bandwidth consumption at the cost of potentially additional memory
consumption.
- discardSomeReadBytes() - Method in class io.netty.buffer.CompositeByteBuf
-
- discardSomeReadBytes() - Method in class io.netty.buffer.EmptyByteBuf
-
- discardSomeReadBytes() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- dumpStats() - Method in class io.netty.buffer.PooledByteBufAllocator
-
Returns the status of the allocator (which contains all metrics) as string.
- duplicate() - Method in class io.netty.buffer.AbstractByteBuf
-
- duplicate() - Method in class io.netty.buffer.ByteBuf
-
Returns a buffer which shares the whole region of this buffer.
- duplicate() - Method in interface io.netty.buffer.ByteBufHolder
-
- duplicate() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- duplicate() - Method in class io.netty.buffer.EmptyByteBuf
-
- duplicate() - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- duplicate() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- DuplicatedByteBuf - Class in io.netty.buffer
-
- DuplicatedByteBuf(ByteBuf) - Constructor for class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBoolean(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getBoolean(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a boolean at the specified absolute (@code index) in this buffer.
- getBoolean(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBoolean(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getByte(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getByte(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a byte at the specified absolute index
in this buffer.
- getByte(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getByte(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getByte(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getByte(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getByte(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getByte(int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getByte(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, byte[]) - Method in class io.netty.buffer.AbstractByteBuf
-
- getBytes(int, ByteBuf) - Method in class io.netty.buffer.AbstractByteBuf
-
- getBytes(int, ByteBuf, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getBytes(int, ByteBuf) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the specified absolute index
until the destination becomes
non-writable.
- getBytes(int, ByteBuf, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the specified absolute index
.
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the specified absolute index
.
- getBytes(int, byte[]) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the specified absolute index
.
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the specified absolute index
.
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the specified absolute index
until the destination's position
reaches its limit.
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified stream starting at the
specified absolute index
.
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified channel starting at the
specified absolute index
.
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data starting at the specified absolute index
to the specified channel starting at the given file position.
- getBytes(ByteBuf) - Static method in class io.netty.buffer.ByteBufUtil
-
Create a copy of the underlying storage from buf
into a byte array.
- getBytes(ByteBuf, int, int) - Static method in class io.netty.buffer.ByteBufUtil
-
Create a copy of the underlying storage from buf
into a byte array.
- getBytes(ByteBuf, int, int, boolean) - Static method in class io.netty.buffer.ByteBufUtil
-
Return an array of the underlying storage from buf
into a byte array.
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, ByteBuf) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, ByteBuf, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, byte[]) - Method in class io.netty.buffer.CompositeByteBuf
-
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getBytes(int, ByteBuf) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, ByteBuf, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, byte[]) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getBytes(int, ByteBuf) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, ByteBuf, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, byte[]) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- getBytes(int, byte[], int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- getBytes(int, ByteBuffer) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- getBytes(int, OutputStream, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- getBytes(int, GatheringByteChannel, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- getBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- getChar(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getChar(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 2-byte UTF-16 character at the specified absolute
index
in this buffer.
- getChar(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getChar(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getCharSequence(int, int, Charset) - Method in class io.netty.buffer.AbstractByteBuf
-
- getCharSequence(int, int, Charset) - Method in class io.netty.buffer.ByteBuf
-
Gets a
CharSequence
with the given length at the given index.
- getCharSequence(int, int, Charset) - Method in class io.netty.buffer.EmptyByteBuf
-
- getCharSequence(int, int, Charset) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getDouble(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getDouble(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit floating point number at the specified absolute
index
in this buffer.
- getDouble(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getDouble(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getDoubleLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit floating point number at the specified absolute
index
in this buffer in Little Endian Byte Order.
- getFloat(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getFloat(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit floating point number at the specified absolute
index
in this buffer.
- getFloat(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getFloat(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getFloatLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit floating point number at the specified absolute
index
in this buffer in Little Endian Byte Order.
- getInt(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getInt(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit integer at the specified absolute index
in
this buffer.
- getInt(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getInt(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getInt(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getInt(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getInt(int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getInt(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getIntLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getIntLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit integer at the specified absolute index
in
this buffer with Little Endian Byte Order.
- getIntLE(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getIntLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getIntLE(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getIntLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getIntLE(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getLong(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getLong(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit long integer at the specified absolute index
in
this buffer.
- getLong(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getLong(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getLong(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getLong(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getLong(int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getLong(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getLongLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getLongLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit long integer at the specified absolute index
in
this buffer in Little Endian Byte Order.
- getLongLE(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getLongLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getLongLE(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getLongLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getLongLE(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getMedium(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getMedium(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 24-bit medium integer at the specified absolute index
in
this buffer.
- getMedium(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getMedium(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getMediumLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getMediumLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 24-bit medium integer at the specified absolute index
in
this buffer in the Little Endian Byte Order.
- getMediumLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getMediumLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getShort(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getShort(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 16-bit short integer at the specified absolute index
in
this buffer.
- getShort(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getShort(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getShort(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getShort(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getShort(int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getShort(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getShortLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getShortLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets a 16-bit short integer at the specified absolute index
in
this buffer in Little Endian Byte Order.
- getShortLE(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getShortLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getShortLE(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getShortLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getShortLE(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getUnsignedByte(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedByte(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned byte at the specified absolute index
in this
buffer.
- getUnsignedByte(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedByte(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getUnsignedInt(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedInt(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 32-bit integer at the specified absolute index
in this buffer.
- getUnsignedInt(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedInt(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getUnsignedIntLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedIntLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 32-bit integer at the specified absolute index
in this buffer in Little Endian Byte Order.
- getUnsignedIntLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedIntLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getUnsignedMedium(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedMedium(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 24-bit medium integer at the specified absolute
index
in this buffer.
- getUnsignedMedium(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getUnsignedMedium(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedMedium(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getUnsignedMedium(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getUnsignedMedium(int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- getUnsignedMedium(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 24-bit medium integer at the specified absolute
index
in this buffer in Little Endian Byte Order.
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getUnsignedMediumLE(int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- getUnsignedShort(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedShort(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 16-bit short integer at the specified absolute
index
in this buffer.
- getUnsignedShort(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedShort(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- getUnsignedShortLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- getUnsignedShortLE(int) - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 16-bit short integer at the specified absolute
index
in this buffer in Little Endian Byte Order.
- getUnsignedShortLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- getUnsignedShortLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- newDirectBuffer(int, int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
Create a direct
ByteBuf
with the given initialCapacity and maxCapacity.
- newDirectBuffer(int, int) - Method in class io.netty.buffer.PooledByteBufAllocator
-
- newDirectBuffer(int, int) - Method in class io.netty.buffer.UnpooledByteBufAllocator
-
- newHeapBuffer(int, int) - Method in class io.netty.buffer.AbstractByteBufAllocator
-
Create a heap
ByteBuf
with the given initialCapacity and maxCapacity.
- newHeapBuffer(int, int) - Method in class io.netty.buffer.PooledByteBufAllocator
-
- newHeapBuffer(int, int) - Method in class io.netty.buffer.UnpooledByteBufAllocator
-
- newSwappedByteBuf() - Method in class io.netty.buffer.AbstractByteBuf
-
- newSwappedByteBuf() - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- nioBuffer() - Method in class io.netty.buffer.AbstractByteBuf
-
- nioBuffer(int, int) - Method in class io.netty.buffer.AbstractDerivedByteBuf
-
Deprecated.
- nioBuffer() - Method in class io.netty.buffer.ByteBuf
-
Exposes this buffer's readable bytes as an NIO
ByteBuffer
.
- nioBuffer(int, int) - Method in class io.netty.buffer.ByteBuf
-
Exposes this buffer's sub-region as an NIO
ByteBuffer
.
- nioBuffer(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- nioBuffer() - Method in class io.netty.buffer.EmptyByteBuf
-
- nioBuffer(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- nioBuffer(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- nioBuffer() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- nioBuffer(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- nioBuffer(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- nioBuffer(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- nioBuffer(int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- nioBufferCount() - Method in class io.netty.buffer.ByteBuf
-
Returns the maximum number of NIO
ByteBuffer
s that consist this buffer.
- nioBufferCount() - Method in class io.netty.buffer.CompositeByteBuf
-
- nioBufferCount() - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- nioBufferCount() - Method in class io.netty.buffer.EmptyByteBuf
-
- nioBufferCount() - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- nioBufferCount() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- nioBufferCount() - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- nioBufferCount() - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- nioBufferCount() - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- nioBuffers() - Method in class io.netty.buffer.AbstractByteBuf
-
- nioBuffers() - Method in class io.netty.buffer.ByteBuf
-
Exposes this buffer's readable bytes as an NIO
ByteBuffer
's.
- nioBuffers(int, int) - Method in class io.netty.buffer.ByteBuf
-
Exposes this buffer's bytes as an NIO
ByteBuffer
's for the specified index and length
The returned buffer either share or contains the copied content of this buffer, while changing
the position and limit of the returned NIO buffer does not affect the indexes and marks of this buffer.
- nioBuffers(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- nioBuffers() - Method in class io.netty.buffer.CompositeByteBuf
-
- nioBuffers(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- nioBuffers() - Method in class io.netty.buffer.EmptyByteBuf
-
- nioBuffers(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- nioBuffers(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- nioBuffers() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- nioBuffers(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- nioBuffers(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- nioBuffers(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- nioBuffers(int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- normalCacheSize() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- normalCacheSize() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
Return the size of the normal cache.
- numActiveAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of currently active allocations.
- numActiveBytes() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of active bytes that are currently allocated by the arena.
- numActiveHugeAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of currently active huge allocations.
- numActiveNormalAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of currently active normal allocations.
- numActiveSmallAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of currently active small allocations.
- numActiveTinyAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of currently active tiny allocations.
- numAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of allocations done via the arena.
- numAvailable() - Method in interface io.netty.buffer.PoolSubpageMetric
-
Return the number of available elements to be allocated.
- numChunkLists() - Method in interface io.netty.buffer.PoolArenaMetric
-
Returns the number of chunk lists for the arena.
- numComponents() - Method in class io.netty.buffer.CompositeByteBuf
-
Return the current number of
ByteBuf
's that are composed in this instance
- numDeallocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of deallocations done via the arena.
- numDirectArenas() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- numDirectArenas() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
Return the number of direct arenas.
- numHeapArenas() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- numHeapArenas() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
Return the number of heap arenas.
- numHugeAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of huge allocations done via the arena.
- numHugeDeallocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of huge deallocations done via the arena.
- numNormalAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of normal allocations done via the arena.
- numNormalDeallocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of normal deallocations done via the arena.
- numSmallAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of small allocations done via the arena.
- numSmallDeallocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of small deallocations done via the arena.
- numSmallSubpages() - Method in interface io.netty.buffer.PoolArenaMetric
-
Returns the number of small sub-pages for the arena.
- numThreadCaches() - Method in interface io.netty.buffer.PoolArenaMetric
-
Returns the number of thread caches backed by this arena.
- numThreadLocalCaches() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- numThreadLocalCaches() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
- numTinyAllocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of tiny allocations done via the arena.
- numTinyDeallocations() - Method in interface io.netty.buffer.PoolArenaMetric
-
Return the number of tiny deallocations done via the arena.
- numTinySubpages() - Method in interface io.netty.buffer.PoolArenaMetric
-
Returns the number of tiny sub-pages for the arena.
- read() - Method in class io.netty.buffer.ByteBufInputStream
-
- read(byte[], int, int) - Method in class io.netty.buffer.ByteBufInputStream
-
- readableBytes() - Method in class io.netty.buffer.AbstractByteBuf
-
- readableBytes() - Method in class io.netty.buffer.ByteBuf
-
Returns the number of readable bytes which is equal to
(this.writerIndex - this.readerIndex)
.
- readableBytes() - Method in class io.netty.buffer.EmptyByteBuf
-
- readableBytes() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBoolean() - Method in class io.netty.buffer.AbstractByteBuf
-
- readBoolean() - Method in class io.netty.buffer.ByteBuf
-
Gets a boolean at the current readerIndex
and increases
the readerIndex
by 1
in this buffer.
- readBoolean() - Method in class io.netty.buffer.ByteBufInputStream
-
- readBoolean() - Method in class io.netty.buffer.EmptyByteBuf
-
- readBoolean() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readByte() - Method in class io.netty.buffer.AbstractByteBuf
-
- readByte() - Method in class io.netty.buffer.ByteBuf
-
Gets a byte at the current readerIndex
and increases
the readerIndex
by 1
in this buffer.
- readByte() - Method in class io.netty.buffer.ByteBufInputStream
-
- readByte() - Method in class io.netty.buffer.EmptyByteBuf
-
- readByte() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(byte[], int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(byte[]) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(ByteBuf) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(ByteBuf, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(ByteBuf, int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(ByteBuffer) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(OutputStream, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readBytes(int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to a newly created buffer starting at
the current readerIndex
and increases the readerIndex
by the number of the transferred bytes (= length
).
- readBytes(ByteBuf) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the current readerIndex
until the destination becomes
non-writable, and increases the readerIndex
by the number of the
transferred bytes.
- readBytes(ByteBuf, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the current readerIndex
and increases the readerIndex
by the number of the transferred bytes (= length
).
- readBytes(ByteBuf, int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the current readerIndex
and increases the readerIndex
by the number of the transferred bytes (= length
).
- readBytes(byte[]) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the current readerIndex
and increases the readerIndex
by the number of the transferred bytes (= dst.length
).
- readBytes(byte[], int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the current readerIndex
and increases the readerIndex
by the number of the transferred bytes (= length
).
- readBytes(ByteBuffer) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified destination starting at
the current readerIndex
until the destination's position
reaches its limit, and increases the readerIndex
by the
number of the transferred bytes.
- readBytes(OutputStream, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified stream starting at the
current readerIndex
.
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data to the specified stream starting at the
current readerIndex
.
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers this buffer's data starting at the current readerIndex
to the specified channel starting at the given file position.
- readBytes() - Method in class io.netty.buffer.ByteBufInputStream
-
Returns the number of read bytes by this stream so far.
- readBytes(ByteBufAllocator, ByteBuf, int) - Static method in class io.netty.buffer.ByteBufUtil
-
- readBytes(ByteBuf) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(ByteBuf, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(ByteBuf, int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(byte[]) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(byte[], int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(ByteBuffer) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(OutputStream, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- readBytes(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(ByteBuf) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(ByteBuf, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(ByteBuf, int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(byte[]) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(byte[], int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(ByteBuffer) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(OutputStream, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readBytes(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(ByteBuf) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(ByteBuf, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(ByteBuf, int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(byte[]) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(byte[], int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(ByteBuffer) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(OutputStream, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readBytes(byte[], int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- readBytes(ByteBuffer) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- readBytes(OutputStream, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- readBytes(ByteBuffer) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- readBytes(GatheringByteChannel, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- readBytes(FileChannel, long, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- readChar() - Method in class io.netty.buffer.AbstractByteBuf
-
- readChar() - Method in class io.netty.buffer.ByteBuf
-
Gets a 2-byte UTF-16 character at the current readerIndex
and increases the readerIndex
by 2
in this buffer.
- readChar() - Method in class io.netty.buffer.ByteBufInputStream
-
- readChar() - Method in class io.netty.buffer.EmptyByteBuf
-
- readChar() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readCharSequence(int, Charset) - Method in class io.netty.buffer.AbstractByteBuf
-
- readCharSequence(int, Charset) - Method in class io.netty.buffer.ByteBuf
-
Gets a
CharSequence
with the given length at the current
readerIndex
and increases the
readerIndex
by the given length.
- readCharSequence(int, Charset) - Method in class io.netty.buffer.EmptyByteBuf
-
- readCharSequence(int, Charset) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readDouble() - Method in class io.netty.buffer.AbstractByteBuf
-
- readDouble() - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit floating point number at the current readerIndex
and increases the readerIndex
by 8
in this buffer.
- readDouble() - Method in class io.netty.buffer.ByteBufInputStream
-
- readDouble() - Method in class io.netty.buffer.EmptyByteBuf
-
- readDouble() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readDoubleLE() - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit floating point number at the current readerIndex
in Little Endian Byte Order and increases the readerIndex
by 8
in this buffer.
- readerIndex() - Method in class io.netty.buffer.AbstractByteBuf
-
- readerIndex(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readerIndex() - Method in class io.netty.buffer.ByteBuf
-
Returns the readerIndex
of this buffer.
- readerIndex(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the readerIndex
of this buffer.
- readerIndex(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- readerIndex() - Method in class io.netty.buffer.EmptyByteBuf
-
- readerIndex(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readerIndex() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readerIndex(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readFloat() - Method in class io.netty.buffer.AbstractByteBuf
-
- readFloat() - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit floating point number at the current readerIndex
and increases the readerIndex
by 4
in this buffer.
- readFloat() - Method in class io.netty.buffer.ByteBufInputStream
-
- readFloat() - Method in class io.netty.buffer.EmptyByteBuf
-
- readFloat() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readFloatLE() - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit floating point number at the current readerIndex
in Little Endian Byte Order and increases the readerIndex
by 4
in this buffer.
- readFully(byte[]) - Method in class io.netty.buffer.ByteBufInputStream
-
- readFully(byte[], int, int) - Method in class io.netty.buffer.ByteBufInputStream
-
- readInt() - Method in class io.netty.buffer.AbstractByteBuf
-
- readInt() - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit integer at the current readerIndex
and increases the readerIndex
by 4
in this buffer.
- readInt() - Method in class io.netty.buffer.ByteBufInputStream
-
- readInt() - Method in class io.netty.buffer.EmptyByteBuf
-
- readInt() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readIntLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readIntLE() - Method in class io.netty.buffer.ByteBuf
-
Gets a 32-bit integer at the current readerIndex
in the Little Endian Byte Order and increases the readerIndex
by 4
in this buffer.
- readIntLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readIntLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readLine() - Method in class io.netty.buffer.ByteBufInputStream
-
- readLong() - Method in class io.netty.buffer.AbstractByteBuf
-
- readLong() - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit integer at the current readerIndex
and increases the readerIndex
by 8
in this buffer.
- readLong() - Method in class io.netty.buffer.ByteBufInputStream
-
- readLong() - Method in class io.netty.buffer.EmptyByteBuf
-
- readLong() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readLongLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readLongLE() - Method in class io.netty.buffer.ByteBuf
-
Gets a 64-bit integer at the current readerIndex
in the Little Endian Byte Order and increases the readerIndex
by 8
in this buffer.
- readLongLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readLongLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readMedium() - Method in class io.netty.buffer.AbstractByteBuf
-
- readMedium() - Method in class io.netty.buffer.ByteBuf
-
Gets a 24-bit medium integer at the current readerIndex
and increases the readerIndex
by 3
in this buffer.
- readMedium() - Method in class io.netty.buffer.EmptyByteBuf
-
- readMedium() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readMediumLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readMediumLE() - Method in class io.netty.buffer.ByteBuf
-
Gets a 24-bit medium integer at the current readerIndex
in the Little Endian Byte Order and increases the
readerIndex
by 3
in this buffer.
- readMediumLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readMediumLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- ReadOnlyByteBuf - Class in io.netty.buffer
-
- ReadOnlyByteBuf(ByteBuf) - Constructor for class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- readRetainedSlice(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readRetainedSlice(int) - Method in class io.netty.buffer.ByteBuf
-
Returns a new retained slice of this buffer's sub-region starting at the current
readerIndex
and increases the readerIndex
by the size
of the new slice (= length
).
- readRetainedSlice(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readRetainedSlice(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readShort() - Method in class io.netty.buffer.AbstractByteBuf
-
- readShort() - Method in class io.netty.buffer.ByteBuf
-
Gets a 16-bit short integer at the current readerIndex
and increases the readerIndex
by 2
in this buffer.
- readShort() - Method in class io.netty.buffer.ByteBufInputStream
-
- readShort() - Method in class io.netty.buffer.EmptyByteBuf
-
- readShort() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readShortLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readShortLE() - Method in class io.netty.buffer.ByteBuf
-
Gets a 16-bit short integer at the current readerIndex
in the Little Endian Byte Order and increases the readerIndex
by 2
in this buffer.
- readShortLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readShortLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readSlice(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- readSlice(int) - Method in class io.netty.buffer.ByteBuf
-
Returns a new slice of this buffer's sub-region starting at the current
readerIndex
and increases the readerIndex
by the size
of the new slice (= length
).
- readSlice(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- readSlice(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedByte() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedByte() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned byte at the current readerIndex
and increases
the readerIndex
by 1
in this buffer.
- readUnsignedByte() - Method in class io.netty.buffer.ByteBufInputStream
-
- readUnsignedByte() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedByte() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedInt() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedInt() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 32-bit integer at the current readerIndex
and increases the readerIndex
by 4
in this buffer.
- readUnsignedInt() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedInt() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedIntLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedIntLE() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 32-bit integer at the current readerIndex
in the Little Endian Byte Order and increases the readerIndex
by 4
in this buffer.
- readUnsignedIntLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedIntLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedMedium() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedMedium() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 24-bit medium integer at the current readerIndex
and increases the readerIndex
by 3
in this buffer.
- readUnsignedMedium() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedMedium() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedMediumLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedMediumLE() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 24-bit medium integer at the current readerIndex
in the Little Endian Byte Order and increases the readerIndex
by 3
in this buffer.
- readUnsignedMediumLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedMediumLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedShort() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedShort() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 16-bit short integer at the current readerIndex
and increases the readerIndex
by 2
in this buffer.
- readUnsignedShort() - Method in class io.netty.buffer.ByteBufInputStream
-
- readUnsignedShort() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedShort() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUnsignedShortLE() - Method in class io.netty.buffer.AbstractByteBuf
-
- readUnsignedShortLE() - Method in class io.netty.buffer.ByteBuf
-
Gets an unsigned 16-bit short integer at the current readerIndex
in the Little Endian Byte Order and increases the readerIndex
by 2
in this buffer.
- readUnsignedShortLE() - Method in class io.netty.buffer.EmptyByteBuf
-
- readUnsignedShortLE() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- readUTF() - Method in class io.netty.buffer.ByteBufInputStream
-
- refCnt() - Method in class io.netty.buffer.AbstractDerivedByteBuf
-
Deprecated.
- refCnt() - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
- refCnt() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- refCnt() - Method in class io.netty.buffer.EmptyByteBuf
-
- refCnt() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- release() - Method in class io.netty.buffer.AbstractDerivedByteBuf
-
Deprecated.
- release(int) - Method in class io.netty.buffer.AbstractDerivedByteBuf
-
Deprecated.
- release() - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
- release(int) - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
- release() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- release(int) - Method in class io.netty.buffer.DefaultByteBufHolder
-
- release() - Method in class io.netty.buffer.EmptyByteBuf
-
- release(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- release() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- release(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- removeComponent(int) - Method in class io.netty.buffer.CompositeByteBuf
-
Remove the
ByteBuf
from the given index.
- removeComponents(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
Remove the number of
ByteBuf
s starting from the given index.
- replace(ByteBuf) - Method in interface io.netty.buffer.ByteBufHolder
-
Returns a new
ByteBufHolder
which contains the specified
content
.
- replace(ByteBuf) - Method in class io.netty.buffer.DefaultByteBufHolder
-
Returns a new
ByteBufHolder
which contains the specified
content
.
- reserveAndWriteUtf8(ByteBuf, CharSequence, int) - Static method in class io.netty.buffer.ByteBufUtil
-
- reset() - Method in class io.netty.buffer.ByteBufInputStream
-
- resetReaderIndex() - Method in class io.netty.buffer.AbstractByteBuf
-
- resetReaderIndex() - Method in class io.netty.buffer.ByteBuf
-
Repositions the current readerIndex
to the marked
readerIndex
in this buffer.
- resetReaderIndex() - Method in class io.netty.buffer.CompositeByteBuf
-
- resetReaderIndex() - Method in class io.netty.buffer.EmptyByteBuf
-
- resetReaderIndex() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- resetWriterIndex() - Method in class io.netty.buffer.AbstractByteBuf
-
- resetWriterIndex() - Method in class io.netty.buffer.ByteBuf
-
Repositions the current writerIndex
to the marked
writerIndex
in this buffer.
- resetWriterIndex() - Method in class io.netty.buffer.CompositeByteBuf
-
- resetWriterIndex() - Method in class io.netty.buffer.EmptyByteBuf
-
- resetWriterIndex() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- retain() - Method in class io.netty.buffer.AbstractDerivedByteBuf
-
Deprecated.
- retain(int) - Method in class io.netty.buffer.AbstractDerivedByteBuf
-
Deprecated.
- retain() - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
- retain(int) - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
- retain(int) - Method in class io.netty.buffer.ByteBuf
-
- retain() - Method in class io.netty.buffer.ByteBuf
-
- retain() - Method in interface io.netty.buffer.ByteBufHolder
-
- retain(int) - Method in interface io.netty.buffer.ByteBufHolder
-
- retain(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- retain() - Method in class io.netty.buffer.CompositeByteBuf
-
- retain() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- retain(int) - Method in class io.netty.buffer.DefaultByteBufHolder
-
- retain() - Method in class io.netty.buffer.EmptyByteBuf
-
- retain(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- retain() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- retain(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- retainedDuplicate() - Method in class io.netty.buffer.AbstractByteBuf
-
- retainedDuplicate() - Method in class io.netty.buffer.ByteBuf
-
Returns a retained buffer which shares the whole region of this buffer.
- retainedDuplicate() - Method in interface io.netty.buffer.ByteBufHolder
-
- retainedDuplicate() - Method in class io.netty.buffer.DefaultByteBufHolder
-
- retainedDuplicate() - Method in class io.netty.buffer.EmptyByteBuf
-
- retainedDuplicate() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- retainedSlice() - Method in class io.netty.buffer.AbstractByteBuf
-
- retainedSlice(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- retainedSlice() - Method in class io.netty.buffer.ByteBuf
-
Returns a retained slice of this buffer's readable bytes.
- retainedSlice(int, int) - Method in class io.netty.buffer.ByteBuf
-
Returns a retained slice of this buffer's sub-region.
- retainedSlice() - Method in class io.netty.buffer.EmptyByteBuf
-
- retainedSlice(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- retainedSlice() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- retainedSlice(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBoolean(int, boolean) - Method in class io.netty.buffer.AbstractByteBuf
-
- setBoolean(int, boolean) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified boolean at the specified absolute index
in this
buffer.
- setBoolean(int, boolean) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBoolean(int, boolean) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBoolean(int, boolean) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setByte(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setByte(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified byte at the specified absolute index
in this
buffer.
- setByte(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setByte(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setByte(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setByte(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setByte(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setByte(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setByte(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, byte[]) - Method in class io.netty.buffer.AbstractByteBuf
-
- setBytes(int, ByteBuf) - Method in class io.netty.buffer.AbstractByteBuf
-
- setBytes(int, ByteBuf, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setBytes(int, ByteBuf) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index
until the source buffer becomes
unreadable.
- setBytes(int, ByteBuf, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index
.
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index
.
- setBytes(int, byte[]) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source array's data to this buffer starting at
the specified absolute index
.
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source array's data to this buffer starting at
the specified absolute index
.
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index
until the source buffer's position
reaches its limit.
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the content of the specified source stream to this buffer
starting at the specified absolute index
.
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the content of the specified source channel to this buffer
starting at the specified absolute index
.
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the content of the specified source channel starting at the given file position
to this buffer starting at the specified absolute index
.
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, ByteBuf) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, ByteBuf, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, byte[]) - Method in class io.netty.buffer.CompositeByteBuf
-
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setBytes(int, ByteBuf) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, ByteBuf, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, byte[]) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setBytes(int, ByteBuf) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, ByteBuf, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, byte[]) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setBytes(int, ByteBuf, int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- setBytes(int, byte[], int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- setBytes(int, ByteBuffer) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- setBytes(int, InputStream, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- setBytes(int, ScatteringByteChannel, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- setBytes(int, FileChannel, long, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- setChar(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setChar(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 2-byte UTF-16 character at the specified absolute
index
in this buffer.
- setChar(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setChar(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setChar(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setCharSequence(int, CharSequence, Charset) - Method in class io.netty.buffer.AbstractByteBuf
-
- setCharSequence(int, CharSequence, Charset) - Method in class io.netty.buffer.ByteBuf
-
Writes the specified
CharSequence
at the current
writerIndex
and increases
the
writerIndex
by the written bytes.
- setCharSequence(int, CharSequence, Charset) - Method in class io.netty.buffer.EmptyByteBuf
-
- setCharSequence(int, CharSequence, Charset) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setDouble(int, double) - Method in class io.netty.buffer.AbstractByteBuf
-
- setDouble(int, double) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit floating-point number at the specified
absolute index
in this buffer.
- setDouble(int, double) - Method in class io.netty.buffer.CompositeByteBuf
-
- setDouble(int, double) - Method in class io.netty.buffer.EmptyByteBuf
-
- setDouble(int, double) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setDoubleLE(int, double) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit floating-point number at the specified
absolute index
in this buffer in Little Endian Byte Order.
- setFloat(int, float) - Method in class io.netty.buffer.AbstractByteBuf
-
- setFloat(int, float) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit floating-point number at the specified
absolute index
in this buffer.
- setFloat(int, float) - Method in class io.netty.buffer.CompositeByteBuf
-
- setFloat(int, float) - Method in class io.netty.buffer.EmptyByteBuf
-
- setFloat(int, float) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setFloatLE(int, float) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit floating-point number at the specified
absolute index
in this buffer in Little Endian Byte Order.
- setIndex(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setIndex(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the readerIndex
and writerIndex
of this buffer
in one shot.
- setIndex(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setIndex(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setIndex(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setInt(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setInt(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit integer at the specified absolute
index
in this buffer.
- setInt(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setInt(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setInt(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setInt(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setInt(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setInt(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setInt(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setIntLE(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setIntLE(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit integer at the specified absolute
index
in this buffer with Little Endian byte order
.
- setIntLE(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setIntLE(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setIntLE(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setIntLE(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setIntLE(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setLong(int, long) - Method in class io.netty.buffer.AbstractByteBuf
-
- setLong(int, long) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit long integer at the specified absolute
index
in this buffer.
- setLong(int, long) - Method in class io.netty.buffer.CompositeByteBuf
-
- setLong(int, long) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setLong(int, long) - Method in class io.netty.buffer.EmptyByteBuf
-
- setLong(int, long) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setLong(int, long) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setLong(int, long) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setLong(int, long) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setLongLE(int, long) - Method in class io.netty.buffer.AbstractByteBuf
-
- setLongLE(int, long) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit long integer at the specified absolute
index
in this buffer in Little Endian Byte Order.
- setLongLE(int, long) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setLongLE(int, long) - Method in class io.netty.buffer.EmptyByteBuf
-
- setLongLE(int, long) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setLongLE(int, long) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setLongLE(int, long) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setMedium(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setMedium(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 24-bit medium integer at the specified absolute
index
in this buffer.
- setMedium(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setMedium(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setMedium(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setMedium(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setMedium(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setMedium(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setMedium(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setMediumLE(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setMediumLE(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 24-bit medium integer at the specified absolute
index
in this buffer in the Little Endian Byte Order.
- setMediumLE(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setMediumLE(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setMediumLE(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setMediumLE(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setMediumLE(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setRefCnt(int) - Method in class io.netty.buffer.AbstractReferenceCountedByteBuf
-
An unsafe operation intended for use by a subclass that sets the reference count of the buffer directly
- setShort(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setShort(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 16-bit short integer at the specified absolute
index
in this buffer.
- setShort(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setShort(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setShort(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setShort(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setShort(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setShort(int, int) - Method in class io.netty.buffer.UnpooledDirectByteBuf
-
- setShort(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setShortBE(ByteBuf, int, int) - Static method in class io.netty.buffer.ByteBufUtil
-
Sets a big-endian 16-bit short integer to the buffer.
- setShortLE(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setShortLE(int, int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 16-bit short integer at the specified absolute
index
in this buffer with the Little Endian Byte Order.
- setShortLE(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- setShortLE(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setShortLE(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- setShortLE(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setShortLE(int, int) - Method in class io.netty.buffer.UnpooledHeapByteBuf
-
- setZero(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- setZero(int, int) - Method in class io.netty.buffer.ByteBuf
-
Fills this buffer with NUL (0x00) starting at the specified
absolute index
.
- setZero(int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- setZero(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- setZero(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- setZero(int, int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- skip(long) - Method in class io.netty.buffer.ByteBufInputStream
-
- skipBytes(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- skipBytes(int) - Method in class io.netty.buffer.ByteBuf
-
Increases the current readerIndex
by the specified
length
in this buffer.
- skipBytes(int) - Method in class io.netty.buffer.ByteBufInputStream
-
- skipBytes(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- skipBytes(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- skipBytes(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- slice() - Method in class io.netty.buffer.AbstractByteBuf
-
- slice(int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- slice() - Method in class io.netty.buffer.ByteBuf
-
Returns a slice of this buffer's readable bytes.
- slice(int, int) - Method in class io.netty.buffer.ByteBuf
-
Returns a slice of this buffer's sub-region.
- slice(int, int) - Method in class io.netty.buffer.DuplicatedByteBuf
-
Deprecated.
- slice() - Method in class io.netty.buffer.EmptyByteBuf
-
- slice(int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- slice(int, int) - Method in class io.netty.buffer.ReadOnlyByteBuf
-
Deprecated.
- slice() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- slice(int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- SlicedByteBuf - Class in io.netty.buffer
-
- SlicedByteBuf(ByteBuf, int, int) - Constructor for class io.netty.buffer.SlicedByteBuf
-
Deprecated.
- smallCacheSize() - Method in class io.netty.buffer.PooledByteBufAllocator
-
- smallCacheSize() - Method in class io.netty.buffer.PooledByteBufAllocatorMetric
-
Return the size of the small cache.
- smallSubpages() - Method in interface io.netty.buffer.PoolArenaMetric
-
- swapInt(int) - Static method in class io.netty.buffer.ByteBufUtil
-
Toggles the endianness of the specified 32-bit integer.
- swapLong(long) - Static method in class io.netty.buffer.ByteBufUtil
-
Toggles the endianness of the specified 64-bit long integer.
- swapMedium(int) - Static method in class io.netty.buffer.ByteBufUtil
-
Toggles the endianness of the specified 24-bit medium integer.
- SwappedByteBuf - Class in io.netty.buffer
-
- SwappedByteBuf(ByteBuf) - Constructor for class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- swapShort(short) - Static method in class io.netty.buffer.ByteBufUtil
-
Toggles the endianness of the specified 16-bit short integer.
- wrappedBuffer(byte[]) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer which wraps the specified array
.
- wrappedBuffer(byte[], int, int) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian buffer which wraps the sub-region of the
specified array
.
- wrappedBuffer(ByteBuffer) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer which wraps the specified NIO buffer's current
slice.
- wrappedBuffer(long, int, boolean) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer which wraps the specified memory address.
- wrappedBuffer(ByteBuf) - Static method in class io.netty.buffer.Unpooled
-
Creates a new buffer which wraps the specified buffer's readable bytes.
- wrappedBuffer(byte[]...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian composite buffer which wraps the specified
arrays without copying them.
- wrappedBuffer(ByteBuf...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian composite buffer which wraps the readable bytes of the
specified buffers without copying them.
- wrappedBuffer(ByteBuffer...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian composite buffer which wraps the slices of the specified
NIO buffers without copying them.
- wrappedBuffer(int, byte[]...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian composite buffer which wraps the specified
arrays without copying them.
- wrappedBuffer(int, ByteBuf...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian composite buffer which wraps the readable bytes of the
specified buffers without copying them.
- wrappedBuffer(int, ByteBuffer...) - Static method in class io.netty.buffer.Unpooled
-
Creates a new big-endian composite buffer which wraps the slices of the specified
NIO buffers without copying them.
- wrappedUnmodifiableBuffer(ByteBuf...) - Static method in class io.netty.buffer.Unpooled
-
- writableBytes() - Method in class io.netty.buffer.AbstractByteBuf
-
- writableBytes() - Method in class io.netty.buffer.ByteBuf
-
Returns the number of writable bytes which is equal to
(this.capacity - this.writerIndex)
.
- writableBytes() - Method in class io.netty.buffer.EmptyByteBuf
-
- writableBytes() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- write(byte[], int, int) - Method in class io.netty.buffer.ByteBufOutputStream
-
- write(byte[]) - Method in class io.netty.buffer.ByteBufOutputStream
-
- write(int) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeAscii(ByteBufAllocator, CharSequence) - Static method in class io.netty.buffer.ByteBufUtil
-
- writeAscii(ByteBuf, CharSequence) - Static method in class io.netty.buffer.ByteBufUtil
-
- writeBoolean(boolean) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBoolean(boolean) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified boolean at the current writerIndex
and increases the writerIndex
by 1
in this buffer.
- writeBoolean(boolean) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeBoolean(boolean) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBoolean(boolean) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBoolean(boolean) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeByte(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeByte(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified byte at the current writerIndex
and increases the writerIndex
by 1
in this buffer.
- writeByte(int) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeByte(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeByte(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeByte(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(byte[], int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(byte[]) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(ByteBuf) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(ByteBuf, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(ByteBuf, int, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(ByteBuffer) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(InputStream, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(ScatteringByteChannel, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(FileChannel, long, int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeBytes(ByteBuf) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex
until the source buffer becomes
unreadable, and increases the writerIndex
by the number of
the transferred bytes.
- writeBytes(ByteBuf, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex
and increases the writerIndex
by the number of the transferred bytes (= length
).
- writeBytes(ByteBuf, int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex
and increases the writerIndex
by the number of the transferred bytes (= length
).
- writeBytes(byte[]) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source array's data to this buffer starting at
the current writerIndex
and increases the writerIndex
by the number of the transferred bytes (= src.length
).
- writeBytes(byte[], int, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source array's data to this buffer starting at
the current writerIndex
and increases the writerIndex
by the number of the transferred bytes (= length
).
- writeBytes(ByteBuffer) - Method in class io.netty.buffer.ByteBuf
-
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex
until the source buffer's position
reaches its limit, and increases the writerIndex
by the
number of the transferred bytes.
- writeBytes(InputStream, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the content of the specified stream to this buffer
starting at the current writerIndex
and increases the
writerIndex
by the number of the transferred bytes.
- writeBytes(ScatteringByteChannel, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the content of the specified channel to this buffer
starting at the current writerIndex
and increases the
writerIndex
by the number of the transferred bytes.
- writeBytes(FileChannel, long, int) - Method in class io.netty.buffer.ByteBuf
-
Transfers the content of the specified channel starting at the given file position
to this buffer starting at the current writerIndex
and increases the
writerIndex
by the number of the transferred bytes.
- writeBytes(String) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeBytes(ByteBuf) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBytes(ByteBuf, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBytes(ByteBuf, int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBytes(byte[]) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBytes(byte[], int, int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBytes(ByteBuffer) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeBytes(ByteBuf) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(ByteBuf, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(ByteBuf, int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(byte[]) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(byte[], int, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(ByteBuffer) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(InputStream, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(ScatteringByteChannel, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(FileChannel, long, int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeBytes(ByteBuf) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(ByteBuf, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(ByteBuf, int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(byte[]) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(byte[], int, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(ByteBuffer) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(InputStream, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(ScatteringByteChannel, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeBytes(FileChannel, long, int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeChar(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeChar(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 2-byte UTF-16 character at the current
writerIndex
and increases the writerIndex
by 2
in this buffer.
- writeChar(int) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeChar(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeChar(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeChar(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeChars(String) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeCharSequence(CharSequence, Charset) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeCharSequence(CharSequence, Charset) - Method in class io.netty.buffer.ByteBuf
-
Writes the specified
CharSequence
at the current
writerIndex
and increases
the
writerIndex
by the written bytes.
- writeCharSequence(CharSequence, Charset) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeCharSequence(CharSequence, Charset) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeDouble(double) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeDouble(double) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit floating point number at the current
writerIndex
and increases the writerIndex
by 8
in this buffer.
- writeDouble(double) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeDouble(double) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeDouble(double) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeDouble(double) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeDoubleLE(double) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit floating point number at the current
writerIndex
in Little Endian Byte Order and increases
the writerIndex
by 8
in this buffer.
- writeFloat(float) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeFloat(float) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit floating point number at the current
writerIndex
and increases the writerIndex
by 4
in this buffer.
- writeFloat(float) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeFloat(float) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeFloat(float) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeFloat(float) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeFloatLE(float) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit floating point number at the current
writerIndex
in Little Endian Byte Order and increases
the writerIndex
by 4
in this buffer.
- writeInt(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeInt(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit integer at the current writerIndex
and increases the writerIndex
by 4
in this buffer.
- writeInt(int) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeInt(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeInt(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeInt(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeIntLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeIntLE(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 32-bit integer at the current writerIndex
in the Little Endian Byte Order and increases the writerIndex
by 4
in this buffer.
- writeIntLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeIntLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeLong(long) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeLong(long) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit long integer at the current
writerIndex
and increases the writerIndex
by 8
in this buffer.
- writeLong(long) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeLong(long) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeLong(long) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeLong(long) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeLongLE(long) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeLongLE(long) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 64-bit long integer at the current
writerIndex
in the Little Endian Byte Order and
increases the writerIndex
by 8
in this buffer.
- writeLongLE(long) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeLongLE(long) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeMedium(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeMedium(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 24-bit medium integer at the current
writerIndex
and increases the writerIndex
by 3
in this buffer.
- writeMedium(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeMedium(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeMedium(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeMediumBE(ByteBuf, int) - Static method in class io.netty.buffer.ByteBufUtil
-
Writes a big-endian 24-bit medium integer to the buffer.
- writeMediumLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeMediumLE(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 24-bit medium integer at the current
writerIndex
in the Little Endian Byte Order and
increases the writerIndex
by 3
in this
buffer.
- writeMediumLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeMediumLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writerIndex() - Method in class io.netty.buffer.AbstractByteBuf
-
- writerIndex(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writerIndex() - Method in class io.netty.buffer.ByteBuf
-
Returns the writerIndex
of this buffer.
- writerIndex(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the writerIndex
of this buffer.
- writerIndex(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writerIndex() - Method in class io.netty.buffer.EmptyByteBuf
-
- writerIndex(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writerIndex() - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writerIndex(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeShort(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeShort(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 16-bit short integer at the current
writerIndex
and increases the writerIndex
by 2
in this buffer.
- writeShort(int) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeShort(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeShort(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeShort(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeShortBE(ByteBuf, int) - Static method in class io.netty.buffer.ByteBufUtil
-
Writes a big-endian 16-bit short integer to the buffer.
- writeShortLE(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeShortLE(int) - Method in class io.netty.buffer.ByteBuf
-
Sets the specified 16-bit short integer in the Little Endian Byte
Order at the current writerIndex
and increases the
writerIndex
by 2
in this buffer.
- writeShortLE(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeShortLE(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeUTF(String) - Method in class io.netty.buffer.ByteBufOutputStream
-
- writeUtf8(ByteBufAllocator, CharSequence) - Static method in class io.netty.buffer.ByteBufUtil
-
- writeUtf8(ByteBuf, CharSequence) - Static method in class io.netty.buffer.ByteBufUtil
-
- writeZero(int) - Method in class io.netty.buffer.AbstractByteBuf
-
- writeZero(int) - Method in class io.netty.buffer.ByteBuf
-
Fills this buffer with NUL (0x00) starting at the current
writerIndex
and increases the writerIndex
by the
specified length
.
- writeZero(int) - Method in class io.netty.buffer.CompositeByteBuf
-
- writeZero(int) - Method in class io.netty.buffer.EmptyByteBuf
-
- writeZero(int) - Method in class io.netty.buffer.SwappedByteBuf
-
Deprecated.
- writeZero(int) - Method in class io.netty.buffer.UnpooledUnsafeDirectByteBuf
-
- writtenBytes() - Method in class io.netty.buffer.ByteBufOutputStream
-
Returns the number of written bytes by this stream so far.