Package pcap.spi
Interface PacketBuffer
- All Superinterfaces:
AutoCloseable
Used to wrap low-level memory address.
Creation of a buffer:
Pcap pcap = ..;
PacketBuffer buffer = pcap.allocate(PacketBuffer.class).capacity(8);
assert buffer.release();
- Since:
- 1.0.0
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enum
Byte order.static interface
Charset.static interface
Indicate the buffer is sliced. -
Method Summary
Modifier and TypeMethodDescriptionRetrieves this buffer's native byte order.byteOrder
(PacketBuffer.ByteOrder byteOrder) Change this buffer's byte order.long
capacity()
Get buffer capacity.capacity
(long newCapacity) Reallocate buffer.<T extends Packet.Abstract>
TCasting buffer toPacket
.clear()
Sets thereaderIndex
andwriterIndex
of this buffer to0
.copy()
Returns a copy of this buffer's readable bytes.copy
(long index, long length) Returns a copy of this buffer's sub-region.Duplicate the thisPacketBuffer
buffer.ensureWritable
(long minWritableBytes) Makes sure the number of the writable bytes is equal to or greater than the specified value.boolean
getBoolean
(long index) Gets a boolean at the specified absolute (@code index) in this buffer.byte
getByte
(long index) Gets a byte at the specified absoluteindex
in this buffer.getBytes
(long index, byte[] dst) Transfers this buffer's data to the specified destination starting at the specified absoluteindex
.getBytes
(long index, byte[] dst, long dstIndex, long length) Transfers this buffer's data to the specified destination starting at the specified absoluteindex
.getBytes
(long index, PacketBuffer dst) Transfers this buffer's data to the specified destination starting at the specified absoluteindex
until the destination becomes non-writable.getBytes
(long index, PacketBuffer dst, long length) Transfers this buffer's data to the specified destination starting at the specified absoluteindex
.getBytes
(long index, PacketBuffer dst, long dstIndex, long length) Transfers this buffer's data to the specified destination starting at the specified absoluteindex
.getCharSequence
(long index, long length, PacketBuffer.Charset charset) Gets aCharSequence
with the given length at the given index.double
getDouble
(long index) Gets a 64-bit floating point number at the specified absoluteindex
in this buffer.double
getDoubleRE
(long index) Gets a 64-bit floating point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.float
getFloat
(long index) Gets a 32-bit floating point number at the specified absoluteindex
in this buffer.float
getFloatRE
(long index) Gets a 32-bit floating point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.int
getInt
(long index) Gets a 32-bit integer at the specified absoluteindex
in this buffer.int
getIntRE
(long index) Gets a 32-bit integer at the specified absoluteindex
in this buffer with Reserved Native Endian Byte Order.long
getLong
(long index) Gets a 64-bit long integer at the specified absoluteindex
in this buffer.long
getLongRE
(long index) Gets a 64-bit long integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.short
getShort
(long index) Gets a 16-bit short integer at the specified absoluteindex
in this buffer.short
getShortRE
(long index) Gets a 16-bit short integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.short
getUnsignedByte
(long index) Gets an unsigned byte at the specified absoluteindex
in this buffer.long
getUnsignedInt
(long index) Gets an unsigned 32-bit integer at the specified absoluteindex
in this buffer.long
getUnsignedIntRE
(long index) Gets an unsigned 32-bit integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.int
getUnsignedShort
(long index) Gets an unsigned 16-bit short integer at the specified absoluteindex
in this buffer.int
getUnsignedShortRE
(long index) Gets an unsigned 16-bit short integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.boolean
boolean
isReadable
(long numBytes) boolean
boolean
isWritable
(long numBytes) Marks the currentreaderIndex
in this buffer.Marks the currentwriterIndex
in this buffer.long
Get the first byte memory address of thisPacketBuffer
.long
Get readable bytes from a buffer.boolean
Gets a boolean at the currentreaderIndex
and increases thereaderIndex
by1
in this buffer.byte
readByte()
Gets a byte at the currentreaderIndex
and increases thereaderIndex
by1
in this buffer.readBytes
(byte[] dst) Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=dst.length
).readBytes
(byte[] dst, long dstIndex, long length) Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=length
).readBytes
(PacketBuffer dst) Transfers this buffer's data to the specified destination starting at the currentreaderIndex
until the destination becomes non-writable, and increases thereaderIndex
by the number of the transferred bytes.readBytes
(PacketBuffer dst, long length) Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=length
).readBytes
(PacketBuffer dst, long dstIndex, long length) Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=length
).readCharSequence
(long length, PacketBuffer.Charset charset) Gets aCharSequence
with the given length at the currentreaderIndex
and increases thereaderIndex
by the given length.double
Gets a 64-bit floating point number at the currentreaderIndex
and increases thereaderIndex
by8
in this buffer.double
Gets a 64-bit floating point number at the currentreaderIndex
in Reserved Native Endian Byte Order and increases thereaderIndex
by8
in this buffer.long
Get reader buffer index.readerIndex
(long readerIndex) Sets thereaderIndex
of this buffer.float
Gets a 32-bit floating point number at the currentreaderIndex
and increases thereaderIndex
by4
in this buffer.float
Gets a 32-bit floating point number at the currentreaderIndex
in Reserved Native Endian Byte Order and increases thereaderIndex
by4
in this buffer.int
readInt()
Gets a 32-bit integer at the currentreaderIndex
and increases thereaderIndex
by4
in this buffer.int
Gets a 32-bit integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by4
in this buffer.long
readLong()
Gets a 64-bit integer at the currentreaderIndex
and increases thereaderIndex
by8
in this buffer.long
Gets a 64-bit integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by8
in this buffer.short
Gets a 16-bit short integer at the currentreaderIndex
and increases thereaderIndex
by2
in this buffer.short
Gets a 16-bit short integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by2
in this buffer.short
Gets an unsigned byte at the currentreaderIndex
and increases thereaderIndex
by1
in this buffer.long
Gets an unsigned 32-bit integer at the currentreaderIndex
and increases thereaderIndex
by4
in this buffer.long
Gets an unsigned 32-bit integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by4
in this buffer.int
Gets an unsigned 16-bit short integer at the currentreaderIndex
and increases thereaderIndex
by2
in this buffer.int
Gets an unsigned 16-bit short integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by2
in this buffer.boolean
release()
Release thisPacketBuffer
bufferRepositions the currentreaderIndex
to the markedreaderIndex
in this buffer.Repositions the currentwriterIndex
to the markedwriterIndex
in this buffer.setBoolean
(long index, boolean value) Sets the specified boolean at the specified absoluteindex
in this buffer.setByte
(long index, int value) Sets the specified byte at the specified absoluteindex
in this buffer.setBytes
(long index, byte[] src) Transfers the specified source array's data to this buffer starting at the specified absoluteindex
.setBytes
(long index, byte[] src, long srcIndex, long length) Transfers the specified source array's data to this buffer starting at the specified absoluteindex
.setBytes
(long index, PacketBuffer src) Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex
until the source buffer becomes unreadable.setBytes
(long index, PacketBuffer src, long length) Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex
.setBytes
(long index, PacketBuffer src, long srcIndex, long length) Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex
.setCharSequence
(long index, CharSequence sequence, PacketBuffer.Charset charset) Writes the specifiedCharSequence
at the currentwriterIndex
and increases thewriterIndex
by the written bytes.setDouble
(long index, double value) Sets the specified 64-bit floating-point number at the specified absoluteindex
in this buffer.setDoubleRE
(long index, double value) Sets the specified 64-bit floating-point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.setFloat
(long index, float value) Sets the specified 32-bit floating-point number at the specified absoluteindex
in this buffer.setFloatRE
(long index, float value) Sets the specified 32-bit floating-point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.setIndex
(long readerIndex, long writerIndex) Combination ofwriterIndex(...)
andreaderIndex(...)
.setInt
(long index, int value) Sets the specified 32-bit integer at the specified absoluteindex
in this buffer.setIntRE
(long index, int value) Sets the specified 32-bit integer at the specified absoluteindex
in this buffer with Reserved Native Endian byte order .setLong
(long index, long value) Sets the specified 64-bit long integer at the specified absoluteindex
in this buffer.setLongRE
(long index, long value) Sets the specified 64-bit long integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order.setShort
(long index, int value) Sets the specified 16-bit short integer at the specified absoluteindex
in this buffer.setShortRE
(long index, int value) Sets the specified 16-bit short integer at the specified absoluteindex
in this buffer with the Reserved Native Endian Byte Order.skipBytes
(long length) Increases the currentreaderIndex
by the specifiedlength
in this buffer.slice()
Returns a slice of this buffer's readable bytes.slice
(long index, long length) Returns a slice of this buffer's sub-region.long
Get readable bytes from a buffer.writeBoolean
(boolean value) Sets the specified boolean at the currentwriterIndex
and increases thewriterIndex
by1
in this buffer.writeByte
(int value) Sets the specified byte at the currentwriterIndex
and increases thewriterIndex
by1
in this buffer.writeBytes
(byte[] src) Transfers the specified source array's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=src.length
).writeBytes
(byte[] src, long srcIndex, long length) Transfers the specified source array's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=length
).writeBytes
(PacketBuffer src) Transfers the specified source buffer's data to this buffer starting at the currentwriterIndex
until the source buffer becomes unreadable, and increases thewriterIndex
by the number of the transferred bytes.writeBytes
(PacketBuffer src, long length) Transfers the specified source buffer's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=length
).writeBytes
(PacketBuffer src, long srcIndex, long length) Transfers the specified source buffer's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=length
).writeCharSequence
(CharSequence sequence, PacketBuffer.Charset charset) Writes the specifiedCharSequence
at the currentwriterIndex
and increases thewriterIndex
by the written bytes.writeDouble
(double value) Sets the specified 64-bit floating point number at the currentwriterIndex
and increases thewriterIndex
by8
in this buffer.writeDoubleRE
(double value) Sets the specified 64-bit floating point number at the currentwriterIndex
in Reserved Native Endian Byte Order and increases thewriterIndex
by8
in this buffer.writeFloat
(float value) Sets the specified 32-bit floating point number at the currentwriterIndex
and increases thewriterIndex
by4
in this buffer.writeFloatRE
(float value) Sets the specified 32-bit floating point number at the currentwriterIndex
in Reserved Native Endian Byte Order and increases thewriterIndex
by4
in this buffer.writeInt
(int value) Sets the specified 32-bit integer at the currentwriterIndex
and increases thewriterIndex
by4
in this buffer.writeIntRE
(int value) Sets the specified 32-bit integer at the currentwriterIndex
in the Reserved Native Endian Byte Order and increases thewriterIndex
by4
in this buffer.writeLong
(long value) Sets the specified 64-bit long integer at the currentwriterIndex
and increases thewriterIndex
by8
in this buffer.writeLongRE
(long value) Sets the specified 64-bit long integer at the currentwriterIndex
in the Reserved Native Endian Byte Order and increases thewriterIndex
by8
in this buffer.long
Get writer buffer index.writerIndex
(long writerIndex) Sets thewriterIndex
of this buffer.writeShort
(int value) Sets the specified 16-bit short integer at the currentwriterIndex
and increases thewriterIndex
by2
in this buffer.writeShortRE
(int value) Sets the specified 16-bit short integer in the Reserved Native Endian Byte Order at the currentwriterIndex
and increases thewriterIndex
by2
in this buffer.Methods inherited from interface java.lang.AutoCloseable
close
-
Method Details
-
capacity
long capacity()Get buffer capacity.- Returns:
- returns the number of bytes (octets) this buffer can contain.
- Since:
- 1.0.0
-
capacity
Reallocate buffer.- Parameters:
newCapacity
- new capacity.- Returns:
- returns new
PacketBuffer
. - Since:
- 1.0.0
-
readerIndex
long readerIndex()Get reader buffer index.- Returns:
- returns the
readerIndex
of this buffer. - Since:
- 1.0.0
-
readerIndex
Sets thereaderIndex
of this buffer.- Parameters:
readerIndex
- reader index.- Returns:
- returns this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedreaderIndex
is less than0
or greater thanthis.writerIndex
- Since:
- 1.0.0
-
writerIndex
long writerIndex()Get writer buffer index.- Returns:
- returns the
writerIndex
of this buffer. - Since:
- 1.0.0
-
writerIndex
Sets thewriterIndex
of this buffer.- Parameters:
writerIndex
- writer index.- Returns:
- returns this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedwriterIndex
is less thanthis.readerIndex
or greater thanthis.capacity
- Since:
- 1.0.0
-
setIndex
Combination ofwriterIndex(...)
andreaderIndex(...)
.- Parameters:
readerIndex
- reader index.writerIndex
- writer index.- Returns:
- returns this
PacketBuffer
. - Since:
- 1.0.0
-
readableBytes
long readableBytes()Get readable bytes from a buffer.- Returns:
- returns the number of readable bytes which is equal to
(this.writerIndex - this.readerIndex)
. - Since:
- 1.0.0
-
writableBytes
long writableBytes()Get readable bytes from a buffer.- Returns:
- returns the number of writable bytes which is equal to
(this.capacity - this.writerIndex)
. - Since:
- 1.0.0
-
isReadable
boolean isReadable()- Returns:
- returns
true
if and only if(this.writerIndex - this.readerIndex)
is greater than0
. - Since:
- 1.0.0
-
isReadable
boolean isReadable(long numBytes) - Parameters:
numBytes
- number of bytes.- Returns:
- returns
true
if and only if this buffer contains equal to or more than the specified number of elements. - Since:
- 1.0.0
-
isWritable
boolean isWritable()- Returns:
- returns
true
if and only if(this.capacity - this.writerIndex)
is greater than0
. - Since:
- 1.0.0
-
isWritable
boolean isWritable(long numBytes) - Parameters:
numBytes
- number of bytes.- Returns:
- returns
true
if and only if this buffer has enough room to allow writing the specified number of elements. - Since:
- 1.0.0
-
clear
PacketBuffer clear()Sets thereaderIndex
andwriterIndex
of this buffer to0
. This method is identical tosetIndex(0, 0)
.- Returns:
- this
PacketBuffer
. - Since:
- 1.0.0
-
markReaderIndex
PacketBuffer markReaderIndex()Marks the currentreaderIndex
in this buffer. You can reposition the currentreaderIndex
to the markedreaderIndex
by callingresetReaderIndex()
. The initial value of the markedreaderIndex
is0
.- Returns:
- this
PacketBuffer
. - Since:
- 1.0.0
-
resetReaderIndex
PacketBuffer resetReaderIndex()Repositions the currentreaderIndex
to the markedreaderIndex
in this buffer.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the currentwriterIndex
is less than the markedreaderIndex
- Since:
- 1.0.0
-
markWriterIndex
PacketBuffer markWriterIndex()Marks the currentwriterIndex
in this buffer. You can reposition the currentwriterIndex
to the markedwriterIndex
by callingresetWriterIndex()
. The initial value of the markedwriterIndex
is0
.- Returns:
- this
PacketBuffer
. - Since:
- 1.0.0
-
resetWriterIndex
PacketBuffer resetWriterIndex()Repositions the currentwriterIndex
to the markedwriterIndex
in this buffer.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the currentreaderIndex
is greater than the markedwriterIndex
- Since:
- 1.0.0
-
ensureWritable
Makes sure the number of the writable bytes is equal to or greater than the specified value. If there is enough writable bytes in this buffer, this method returns with no side effect. Otherwise, it raises anIllegalArgumentException
.- Parameters:
minWritableBytes
- the expected minimum number of writable bytes- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifwriterIndex()
+minWritableBytes
>capacity()
- Since:
- 1.0.0
-
getBoolean
boolean getBoolean(long index) Gets a boolean at the specified absolute (@code index) in this buffer. This method does not modify thereaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- boolean value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 1
is greater thanthis.capacity
- Since:
- 1.0.0
-
getByte
byte getByte(long index) Gets a byte at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- byte value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 1
is greater thanthis.capacity
- Since:
- 1.0.0
-
getUnsignedByte
short getUnsignedByte(long index) Gets an unsigned byte at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- unsigned byte value stored in
short
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 1
is greater thanthis.capacity
- Since:
- 1.0.0
-
getShort
short getShort(long index) Gets a 16-bit short integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- short value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 2
is greater thanthis.capacity
- Since:
- 1.0.0
-
getShortRE
short getShortRE(long index) Gets a 16-bit short integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- reserved native endian short value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 2
is greater thanthis.capacity
- Since:
- 1.0.0
-
getUnsignedShort
int getUnsignedShort(long index) Gets an unsigned 16-bit short integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- unsigned short value stored in
integer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 2
is greater thanthis.capacity
- Since:
- 1.0.0
-
getUnsignedShortRE
int getUnsignedShortRE(long index) Gets an unsigned 16-bit short integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- unsigned reserved native endian short value stored in
integer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 2
is greater thanthis.capacity
- Since:
- 1.0.0
-
getInt
int getInt(long index) Gets a 32-bit integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- integer value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
getIntRE
int getIntRE(long index) Gets a 32-bit integer at the specified absoluteindex
in this buffer with Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- reserved native endian integer value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
getUnsignedInt
long getUnsignedInt(long index) Gets an unsigned 32-bit integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- unsigned integer value stored in
long
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
getUnsignedIntRE
long getUnsignedIntRE(long index) Gets an unsigned 32-bit integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- unsigned reserved native endian integer value stored in
long
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
getLong
long getLong(long index) Gets a 64-bit long integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- long value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
getLongRE
long getLongRE(long index) Gets a 64-bit long integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- reserved native endian long value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
getFloat
float getFloat(long index) Gets a 32-bit floating point number at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- float value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
getFloatRE
float getFloatRE(long index) Gets a 32-bit floating point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- reserved native endian float value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
getDouble
double getDouble(long index) Gets a 64-bit floating point number at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- double value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
getDoubleRE
double getDoubleRE(long index) Gets a 64-bit floating point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.- Returns:
- reserved native endian double value.
- Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
getBytes
Transfers this buffer's data to the specified destination starting at the specified absoluteindex
until the destination becomes non-writable. This method is basically same withgetBytes(long, PacketBuffer, long, long)
, except that this method increases thewriterIndex
of the destination by the number of the transferred bytes whilegetBytes(long, PacketBuffer, long, long)
does not. This method does not modifyreaderIndex
orwriterIndex
of the source buffer (i.e.this
).- Parameters:
index
- index.dst
- destination.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
or ifindex + dst.writableBytes
is greater thanthis.capacity
- Since:
- 1.0.0
-
getBytes
Transfers this buffer's data to the specified destination starting at the specified absoluteindex
. This method is basically same withgetBytes(long, PacketBuffer, long, long)
, except that this method increases thewriterIndex
of the destination by the number of the transferred bytes whilegetBytes(long, PacketBuffer, long, long)
does not. This method does not modifyreaderIndex
orwriterIndex
of the source buffer (i.e.this
).- Parameters:
index
- index.dst
- destination.length
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
, ifindex + length
is greater thanthis.capacity
, or iflength
is greater thandst.writableBytes
- Since:
- 1.0.0
-
getBytes
Transfers this buffer's data to the specified destination starting at the specified absoluteindex
. This method does not modifyreaderIndex
orwriterIndex
of both the source (i.e.this
) and the destination.- Parameters:
index
- index.dst
- destination.dstIndex
- the first index of the destinationlength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
, if the specifieddstIndex
is less than0
, ifindex + length
is greater thanthis.capacity
, or ifdstIndex + length
is greater thandst.capacity
- Since:
- 1.0.0
-
getBytes
Transfers this buffer's data to the specified destination starting at the specified absoluteindex
. This method does not modifyreaderIndex
orwriterIndex
of this buffer- Parameters:
index
- index.dst
- destination.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
or ifindex + dst.length
is greater thanthis.capacity
- Since:
- 1.0.0
-
getBytes
Transfers this buffer's data to the specified destination starting at the specified absoluteindex
. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.dst
- destination.dstIndex
- the first index of the destinationlength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
, if the specifieddstIndex
is less than0
, ifindex + length
is greater thanthis.capacity
, or ifdstIndex + length
is greater thandst.length
- Since:
- 1.0.0
-
getCharSequence
Gets aCharSequence
with the given length at the given index.- Parameters:
index
- index.length
- the length to readcharset
- that should be used- Returns:
- a string from buffer.
- Throws:
IndexOutOfBoundsException
- iflength
is greater thanthis.readableBytes
- Since:
- 1.0.0
-
setBoolean
Sets the specified boolean at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 1
is greater thanthis.capacity
- Since:
- 1.0.0
-
setByte
Sets the specified byte at the specified absoluteindex
in this buffer. The 24 high-order bits of the specified value are ignored. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 1
is greater thanthis.capacity
- Since:
- 1.0.0
-
setShort
Sets the specified 16-bit short integer at the specified absoluteindex
in this buffer. The 16 high-order bits of the specified value are ignored. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 2
is greater thanthis.capacity
- Since:
- 1.0.0
-
setShortRE
Sets the specified 16-bit short integer at the specified absoluteindex
in this buffer with the Reserved Native Endian Byte Order. The 16 high-order bits of the specified value are ignored. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 2
is greater thanthis.capacity
- Since:
- 1.0.0
-
setInt
Sets the specified 32-bit integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
setIntRE
Sets the specified 32-bit integer at the specified absoluteindex
in this buffer with Reserved Native Endian byte order . This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
setLong
Sets the specified 64-bit long integer at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
setLongRE
Sets the specified 64-bit long integer at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
setFloat
Sets the specified 32-bit floating-point number at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
setFloatRE
Sets the specified 32-bit floating-point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 4
is greater thanthis.capacity
- Since:
- 1.0.0
-
setDouble
Sets the specified 64-bit floating-point number at the specified absoluteindex
in this buffer. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
setDoubleRE
Sets the specified 64-bit floating-point number at the specified absoluteindex
in this buffer in Reserved Native Endian Byte Order. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
orindex + 8
is greater thanthis.capacity
- Since:
- 1.0.0
-
setBytes
Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex
until the source buffer becomes unreadable. This method is basically same withsetBytes(long, PacketBuffer, long, long)
, except that this method increases thereaderIndex
of the source buffer by the number of the transferred bytes whilesetBytes(long, PacketBuffer, long, long)
does not. This method does not modifyreaderIndex
orwriterIndex
of the source buffer (i.e.this
).- Parameters:
index
- index.src
- source.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
or ifindex + src.readableBytes
is greater thanthis.capacity
- Since:
- 1.0.0
-
setBytes
Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex
. This method is basically same withsetBytes(long, PacketBuffer, long, long)
, except that this method increases thereaderIndex
of the source buffer by the number of the transferred bytes whilesetBytes(long, PacketBuffer, long, long)
does not. This method does not modifyreaderIndex
orwriterIndex
of the source buffer (i.e.this
).- Parameters:
index
- index.src
- source.length
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
, ifindex + length
is greater thanthis.capacity
, or iflength
is greater thansrc.readableBytes
- Since:
- 1.0.0
-
setBytes
Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex
. This method does not modifyreaderIndex
orwriterIndex
of both the source (i.e.this
) and the destination.- Parameters:
index
- index.src
- source.srcIndex
- the first index of the sourcelength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
, if the specifiedsrcIndex
is less than0
, ifindex + length
is greater thanthis.capacity
, or ifsrcIndex + length
is greater thansrc.capacity
- Since:
- 1.0.0
-
setBytes
Transfers the specified source array's data to this buffer starting at the specified absoluteindex
. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.src
- source.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
or ifindex + src.length
is greater thanthis.capacity
- Since:
- 1.0.0
-
setBytes
Transfers the specified source array's data to this buffer starting at the specified absoluteindex
. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.src
- source.srcIndex
- source index.length
- length.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedindex
is less than0
, if the specifiedsrcIndex
is less than0
, ifindex + length
is greater thanthis.capacity
, or ifsrcIndex + length
is greater thansrc.length
- Since:
- 1.0.0
-
setCharSequence
Writes the specifiedCharSequence
at the currentwriterIndex
and increases thewriterIndex
by the written bytes.- Parameters:
index
- on which the sequence should be written.sequence
- to write.charset
- that should be used.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is not large enough to write the whole sequence- Since:
- 1.0.0
-
readBoolean
boolean readBoolean()Gets a boolean at the currentreaderIndex
and increases thereaderIndex
by1
in this buffer.- Returns:
- boolean value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than1
- Since:
- 1.0.0
-
readByte
byte readByte()Gets a byte at the currentreaderIndex
and increases thereaderIndex
by1
in this buffer.- Returns:
- byte value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than1
- Since:
- 1.0.0
-
readUnsignedByte
short readUnsignedByte()Gets an unsigned byte at the currentreaderIndex
and increases thereaderIndex
by1
in this buffer.- Returns:
- unsigned byte stored in
short
. - Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than1
- Since:
- 1.0.0
-
readShort
short readShort()Gets a 16-bit short integer at the currentreaderIndex
and increases thereaderIndex
by2
in this buffer.- Returns:
- short value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than2
- Since:
- 1.0.0
-
readShortRE
short readShortRE()Gets a 16-bit short integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by2
in this buffer.- Returns:
- reserved native endian short value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than2
- Since:
- 1.0.0
-
readUnsignedShort
int readUnsignedShort()Gets an unsigned 16-bit short integer at the currentreaderIndex
and increases thereaderIndex
by2
in this buffer.- Returns:
- unsigned short value stored in
integer
. - Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than2
- Since:
- 1.0.0
-
readUnsignedShortRE
int readUnsignedShortRE()Gets an unsigned 16-bit short integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by2
in this buffer.- Returns:
- unsigned reserved native endian short value stored in
integer
. - Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than2
- Since:
- 1.0.0
-
readInt
int readInt()Gets a 32-bit integer at the currentreaderIndex
and increases thereaderIndex
by4
in this buffer.- Returns:
- integer value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than4
- Since:
- 1.0.0
-
readIntRE
int readIntRE()Gets a 32-bit integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by4
in this buffer.- Returns:
- reserved native endian integer value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than4
- Since:
- 1.0.0
-
readUnsignedInt
long readUnsignedInt()Gets an unsigned 32-bit integer at the currentreaderIndex
and increases thereaderIndex
by4
in this buffer.- Returns:
- unsigned integer value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than4
- Since:
- 1.0.0
-
readUnsignedIntRE
long readUnsignedIntRE()Gets an unsigned 32-bit integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by4
in this buffer.- Returns:
- unsigned reserved native endian integer value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than4
- Since:
- 1.0.0
-
readLong
long readLong()Gets a 64-bit integer at the currentreaderIndex
and increases thereaderIndex
by8
in this buffer.- Returns:
- long value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than8
- Since:
- 1.0.0
-
readLongRE
long readLongRE()Gets a 64-bit integer at the currentreaderIndex
in the Reserved Native Endian Byte Order and increases thereaderIndex
by8
in this buffer.- Returns:
- reserved native endian long value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than8
- Since:
- 1.0.0
-
readFloat
float readFloat()Gets a 32-bit floating point number at the currentreaderIndex
and increases thereaderIndex
by4
in this buffer.- Returns:
- float value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than4
- Since:
- 1.0.0
-
readFloatRE
float readFloatRE()Gets a 32-bit floating point number at the currentreaderIndex
in Reserved Native Endian Byte Order and increases thereaderIndex
by4
in this buffer.- Returns:
- reserved native endian float value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than4
- Since:
- 1.0.0
-
readDouble
double readDouble()Gets a 64-bit floating point number at the currentreaderIndex
and increases thereaderIndex
by8
in this buffer.- Returns:
- double value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than8
- Since:
- 1.0.0
-
readDoubleRE
double readDoubleRE()Gets a 64-bit floating point number at the currentreaderIndex
in Reserved Native Endian Byte Order and increases thereaderIndex
by8
in this buffer.- Returns:
- reserved native endian double value.
- Throws:
IndexOutOfBoundsException
- ifthis.readableBytes
is less than8
- Since:
- 1.0.0
-
readBytes
Transfers this buffer's data to the specified destination starting at the currentreaderIndex
until the destination becomes non-writable, and increases thereaderIndex
by the number of the transferred bytes. This method is basically same withreadBytes(PacketBuffer, long, long)
, except that this method increases thewriterIndex
of the destination by the number of the transferred bytes whilereadBytes(PacketBuffer, long, long)
does not.- Parameters:
dst
- destination.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifdst.writableBytes
is greater thanthis.readableBytes
- Since:
- 1.0.0
-
readBytes
Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=length
). This method is basically same withreadBytes(PacketBuffer, long, long)
, except that this method increases thewriterIndex
of the destination by the number of the transferred bytes (=length
) whilereadBytes(PacketBuffer, long, long)
does not.- Parameters:
dst
- destination.length
- length.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- iflength
is greater thanthis.readableBytes
or iflength
is greater thandst.writableBytes
- Since:
- 1.0.0
-
readBytes
Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=length
).- Parameters:
dst
- destination.dstIndex
- the first index of the destinationlength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifieddstIndex
is less than0
, iflength
is greater thanthis.readableBytes
, or ifdstIndex + length
is greater thandst.capacity
- Since:
- 1.0.0
-
readBytes
Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=dst.length
).- Parameters:
dst
- destination.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifdst.length
is greater thanthis.readableBytes
- Since:
- 1.0.0
-
readBytes
Transfers this buffer's data to the specified destination starting at the currentreaderIndex
and increases thereaderIndex
by the number of the transferred bytes (=length
).- Parameters:
dst
- destination.dstIndex
- the first index of the destinationlength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifieddstIndex
is less than0
, iflength
is greater thanthis.readableBytes
, or ifdstIndex + length
is greater thandst.length
- Since:
- 1.0.0
-
skipBytes
Increases the currentreaderIndex
by the specifiedlength
in this buffer.- Parameters:
length
- length.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- iflength
is greater thanthis.readableBytes
- Since:
- 1.0.0
-
readCharSequence
Gets aCharSequence
with the given length at the currentreaderIndex
and increases thereaderIndex
by the given length.- Parameters:
length
- the length to readcharset
- that should be used- Returns:
- the char sequence.
- Throws:
IndexOutOfBoundsException
- iflength
is greater thanthis.readableBytes
- Since:
- 1.0.0
-
writeBoolean
Sets the specified boolean at the currentwriterIndex
and increases thewriterIndex
by1
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than1
- Since:
- 1.0.0
-
writeByte
Sets the specified byte at the currentwriterIndex
and increases thewriterIndex
by1
in this buffer. The 24 high-order bits of the specified value are ignored.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than1
- Since:
- 1.0.0
-
writeShort
Sets the specified 16-bit short integer at the currentwriterIndex
and increases thewriterIndex
by2
in this buffer. The 16 high-order bits of the specified value are ignored.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than2
- Since:
- 1.0.0
-
writeShortRE
Sets the specified 16-bit short integer in the Reserved Native Endian Byte Order at the currentwriterIndex
and increases thewriterIndex
by2
in this buffer. The 16 high-order bits of the specified value are ignored.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than2
- Since:
- 1.0.0
-
writeInt
Sets the specified 32-bit integer at the currentwriterIndex
and increases thewriterIndex
by4
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than4
- Since:
- 1.0.0
-
writeIntRE
Sets the specified 32-bit integer at the currentwriterIndex
in the Reserved Native Endian Byte Order and increases thewriterIndex
by4
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than4
- Since:
- 1.0.0
-
writeLong
Sets the specified 64-bit long integer at the currentwriterIndex
and increases thewriterIndex
by8
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than8
- Since:
- 1.0.0
-
writeLongRE
Sets the specified 64-bit long integer at the currentwriterIndex
in the Reserved Native Endian Byte Order and increases thewriterIndex
by8
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than8
- Since:
- 1.0.0
-
writeFloat
Sets the specified 32-bit floating point number at the currentwriterIndex
and increases thewriterIndex
by4
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than4
- Since:
- 1.0.0
-
writeFloatRE
Sets the specified 32-bit floating point number at the currentwriterIndex
in Reserved Native Endian Byte Order and increases thewriterIndex
by4
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than4
- Since:
- 1.0.0
-
writeDouble
Sets the specified 64-bit floating point number at the currentwriterIndex
and increases thewriterIndex
by8
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than8
- Since:
- 1.0.0
-
writeDoubleRE
Sets the specified 64-bit floating point number at the currentwriterIndex
in Reserved Native Endian Byte Order and increases thewriterIndex
by8
in this buffer.- Parameters:
value
- value.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is less than8
- Since:
- 1.0.0
-
writeBytes
Transfers the specified source buffer's data to this buffer starting at the currentwriterIndex
until the source buffer becomes unreadable, and increases thewriterIndex
by the number of the transferred bytes. This method is basically same withwriteBytes(PacketBuffer, long, long)
, except that this method increases thereaderIndex
of the source buffer by the number of the transferred bytes whilewriteBytes(PacketBuffer, long, long)
does not.- Parameters:
src
- source.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifsrc.readableBytes
is greater thanthis.writableBytes
- Since:
- 1.0.0
-
writeBytes
Transfers the specified source buffer's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=length
). This method is basically same withwriteBytes(PacketBuffer, long, long)
, except that this method increases thereaderIndex
of the source buffer by the number of the transferred bytes (=length
) whilewriteBytes(PacketBuffer, long, long)
does not.- Parameters:
src
- source.length
- the number of bytes to transfer.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- iflength
is greater thanthis.writableBytes
or iflength
is greater thensrc.readableBytes
- Since:
- 1.0.0
-
writeBytes
Transfers the specified source buffer's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=length
).- Parameters:
src
- source.srcIndex
- the first index of the sourcelength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedsrcIndex
is less than0
, ifsrcIndex + length
is greater thansrc.capacity
, or iflength
is greater thanthis.writableBytes
- Since:
- 1.0.0
-
writeBytes
Transfers the specified source array's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=src.length
).- Parameters:
src
- source.- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- ifsrc.length
is greater thanthis.writableBytes
- Since:
- 1.0.0
-
writeBytes
Transfers the specified source array's data to this buffer starting at the currentwriterIndex
and increases thewriterIndex
by the number of the transferred bytes (=length
).- Parameters:
src
- source.srcIndex
- the first index of the sourcelength
- the number of bytes to transfer- Returns:
- this
PacketBuffer
. - Throws:
IndexOutOfBoundsException
- if the specifiedsrcIndex
is less than0
, ifsrcIndex + length
is greater thansrc.length
, or iflength
is greater thanthis.writableBytes
- Since:
- 1.0.0
-
writeCharSequence
Writes the specifiedCharSequence
at the currentwriterIndex
and increases thewriterIndex
by the written bytes. in this buffer.- Parameters:
sequence
- to write.charset
- that should be used.- Returns:
- the written number of bytes.
- Throws:
IndexOutOfBoundsException
- ifthis.writableBytes
is not large enough to write the whole sequence- Since:
- 1.0.0
-
copy
PacketBuffer copy()Returns a copy of this buffer's readable bytes. Modifying the content of the returned buffer or this buffer does not affect each other at all. This method is identical tocopy(readerIndex(), readableBytes())
. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Returns:
- copied
PacketBuffer
buffer's. - Since:
- 1.0.0
-
copy
Returns a copy of this buffer's sub-region. Modifying the content of the returned buffer or this buffer does not affect each other at all. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.length
- length.- Returns:
- copied
PacketBuffer
buffer's. - Since:
- 1.0.0
-
slice
PacketBuffer slice()Returns a slice of this buffer's readable bytes. Modifying the content of the returned buffer or this buffer affects each other's content while they maintain separate indexes and marks. This method is identical toslice(readerIndex(), readableBytes())
. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Returns:
- returns sliced
PacketBuffer
buffer's. - Since:
- 1.0.0
-
slice
Returns a slice of this buffer's sub-region. Modifying the content of the returned buffer or this buffer affects each other's content while they maintain separate indexes and marks. This method does not modifyreaderIndex
orwriterIndex
of this buffer.- Parameters:
index
- index.length
- length.- Returns:
- returns sliced
PacketBuffer
buffer's. - Since:
- 1.0.0
-
duplicate
PacketBuffer duplicate()Duplicate the thisPacketBuffer
buffer. Modifying the content of the returned buffer or this buffer affects each other's content while they maintain separate indexes and marks- Returns:
- returns duplicated
PacketBuffer
. - Since:
- 1.0.0
-
byteOrder
PacketBuffer.ByteOrder byteOrder()Retrieves this buffer's native byte order.- Returns:
- returns
PacketBuffer.ByteOrder.BIG_ENDIAN
orPacketBuffer.ByteOrder.LITTLE_ENDIAN
. - Since:
- 1.0.0
-
byteOrder
Change this buffer's byte order.- Parameters:
byteOrder
- byte order.- Returns:
- returns this buffer's with new byte order.
- Since:
- 1.0.0
-
memoryAddress
Get the first byte memory address of thisPacketBuffer
.- Returns:
- returns first byte memory address.
- Throws:
IllegalAccessException
- restricted function call.- Since:
- 1.3.1
-
release
boolean release()Release thisPacketBuffer
buffer- Returns:
- returns
true
on sucess,false
otherwise. - Since:
- 1.0.0
-
cast
Casting buffer toPacket
.- Type Parameters:
T
- type.- Parameters:
t
- packet type.- Returns:
- returns
Packet
.
-