Skip navigation links
A B C D E F G H I L M N O P R S T U V W 

A

AESEncryption - Class in net.raphimc.netminecraft.netty.crypto
An encryption implementation using "AES/CFB8/NoPadding" encryption.
AESEncryption(Key) - Constructor for class net.raphimc.netminecraft.netty.crypto.AESEncryption
Creates a new AESEncryption instance.
ALL_VERSIONS - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
alloc() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the ByteBufAllocator which created this buffer.
array() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the backing byte array of this buffer.
arrayOffset() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the offset of the first byte within the backing byte array of this buffer.
asReadOnly() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a read-only version of this buffer.

B

bind(String, int) - Method in class net.raphimc.netminecraft.netty.connection.NetServer
 
bind(String, int, boolean) - Method in class net.raphimc.netminecraft.netty.connection.NetServer
 
build() - Method in class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Returns a new thread factory using the options supplied during the building process.
bytesBefore(byte) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Locates the first occurrence of the specified value in this buffer.
bytesBefore(int, byte) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Locates the first occurrence of the specified value in this buffer.
bytesBefore(int, int, byte) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Locates the first occurrence of the specified value in this buffer.

C

capacity() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the number of bytes (octets) this buffer can contain.
capacity(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Adjusts the capacity of this buffer.
clear() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the readerIndex and writerIndex of this buffer to 0.
CLIENT_EPOLL_EVENTLOOP - Static variable in class net.raphimc.netminecraft.util.LazyLoadBase
 
CLIENT_NIO_EVENTLOOP - Static variable in class net.raphimc.netminecraft.util.LazyLoadBase
 
compareTo(ByteBuf) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Compares the content of the specified buffer to the content of this buffer.
COMPRESSION_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
COMPRESSION_HANDLER_NAME - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
COMPRESSION_THRESHOLD_ATTRIBUTE_KEY - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
computeServerIdHash(String, PublicKey, SecretKey) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
connect(ServerAddress) - Method in class net.raphimc.netminecraft.netty.connection.NetClient
 
ConnectionState - Enum in net.raphimc.netminecraft.constants
 
copy() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a copy of this buffer's readable bytes.
copy(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a copy of this buffer's sub-region.
CryptUtil - Class in net.raphimc.netminecraft.netty.crypto
 
CryptUtil() - Constructor for class net.raphimc.netminecraft.netty.crypto.CryptUtil
 

D

data - Variable in class net.raphimc.netminecraft.packet.UnknownPacket
 
decode(ChannelHandlerContext, ByteBuf, List<Object>) - Method in class net.raphimc.netminecraft.netty.codec.OptimizedPacketSizer
 
decode(ChannelHandlerContext, ByteBuf, List<Object>) - Method in class net.raphimc.netminecraft.netty.codec.PacketCodec
 
decode(ChannelHandlerContext, ByteBuf, List<Object>) - Method in class net.raphimc.netminecraft.netty.codec.PacketCompressor
 
decode(ChannelHandlerContext, ByteBuf, List<Object>) - Method in class net.raphimc.netminecraft.netty.codec.PacketCryptor
 
decode(ChannelHandlerContext, ByteBuf, List<Object>) - Method in class net.raphimc.netminecraft.netty.codec.PacketSizer
 
decodeRsaPublicKey(byte[]) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
decrypt(byte[], int, int, byte[], int) - Method in class net.raphimc.netminecraft.netty.crypto.AESEncryption
 
decryptData(Key, byte[]) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
decryptSecretKey(PrivateKey, byte[]) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
DEFAULT_COMPRESSION_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
DEFAULT_ENCRYPTION_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
DEFAULT_PACKET_CODEC_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
DEFAULT_SIZER_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
discardReadBytes() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Discards the bytes between the 0th index and readerIndex.
discardSomeReadBytes() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
duplicate() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a buffer which shares the whole region of this buffer.

E

encode(ChannelHandlerContext, ByteBuf, ByteBuf) - Method in class net.raphimc.netminecraft.netty.codec.OptimizedPacketSizer
 
encode(ChannelHandlerContext, IPacket, ByteBuf) - Method in class net.raphimc.netminecraft.netty.codec.PacketCodec
 
encode(ChannelHandlerContext, ByteBuf, ByteBuf) - Method in class net.raphimc.netminecraft.netty.codec.PacketCompressor
 
encode(ChannelHandlerContext, ByteBuf, ByteBuf) - Method in class net.raphimc.netminecraft.netty.codec.PacketCryptor
 
encode(ChannelHandlerContext, ByteBuf, ByteBuf) - Method in class net.raphimc.netminecraft.netty.codec.PacketSizer
 
encodeRsaPublicKey(PublicKey) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
encrypt(byte[], int, int, byte[], int) - Method in class net.raphimc.netminecraft.netty.crypto.AESEncryption
 
encryptData(Key, byte[]) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
ENCRYPTION_ATTRIBUTE_KEY - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
ENCRYPTION_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
ENCRYPTION_HANDLER_NAME - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
ensureWritable(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Expands the buffer PacketByteBuf.capacity() to make sure the number of writable bytes is equal to or greater than the specified value.
ensureWritable(int, boolean) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Expands the buffer PacketByteBuf.capacity() to make sure the number of writable bytes is equal to or greater than the specified value.
equals(Object) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Determines if the content of the specified buffer is identical to the content of this array.

F

forEachByte(ByteProcessor) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Iterates over the readable bytes of this buffer with the specified processor in ascending order.
forEachByte(int, int, ByteProcessor) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Iterates over the specified area of this buffer with the specified processor in ascending order.
forEachByteDesc(ByteProcessor) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Iterates over the readable bytes of this buffer with the specified processor in descending order.
forEachByteDesc(int, int, ByteProcessor) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Iterates over the specified area of this buffer with the specified processor in descending order.
fromSRV(String) - Static method in class net.raphimc.netminecraft.util.ServerAddress
 
fromString(String) - Static method in class net.raphimc.netminecraft.util.UUIDAdapter
 
fromUUID(UUID) - Static method in class net.raphimc.netminecraft.util.UUIDAdapter
 

G

generateKeyPair() - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
generateSecretKey() - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
getAddress() - Method in class net.raphimc.netminecraft.util.ServerAddress
 
getBoolean(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a boolean at the specified absolute (@code index) in this buffer.
getById(int) - Static method in enum net.raphimc.netminecraft.constants.ConnectionState
 
getByte(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a byte at the specified absolute index in this buffer.
getBytes(int, ByteBuf) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified destination starting at the specified absolute index.
getBytes(int, ByteBuf, int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified destination starting at the specified absolute index.
getBytes(int, byte[]) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified destination starting at the specified absolute index.
getBytes(int, byte[], int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified destination starting at the specified absolute index.
getBytes(int, ByteBuffer) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified stream starting at the specified absolute index.
getBytes(int, GatheringByteChannel, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified channel starting at the specified absolute index.
getBytes(int, FileChannel, long, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data starting at the specified absolute index to the specified channel starting at the given file position.
getBytesRead() - Method in class net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder
 
getChannel() - Method in class net.raphimc.netminecraft.netty.connection.NetClient
 
getChannel() - Method in class net.raphimc.netminecraft.netty.connection.NetServer
 
getChannelFuture() - Method in class net.raphimc.netminecraft.netty.connection.NetClient
 
getChannelFuture() - Method in class net.raphimc.netminecraft.netty.connection.NetServer
 
getChar(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 2-byte UTF-16 character at the specified absolute index in this buffer.
getCharSequence(int, int, Charset) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a CharSequence with the given length at the given index.
getDecryptOutputSize(int) - Method in class net.raphimc.netminecraft.netty.crypto.AESEncryption
 
getDirection() - Method in enum net.raphimc.netminecraft.constants.MCPackets
 
getDouble(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 64-bit floating point number at the specified absolute index in this buffer.
getEncryptOutputSize(int) - Method in class net.raphimc.netminecraft.netty.crypto.AESEncryption
 
getFloat(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 32-bit floating point number at the specified absolute index in this buffer.
getId() - Method in enum net.raphimc.netminecraft.constants.ConnectionState
 
getId(int) - Method in enum net.raphimc.netminecraft.constants.MCPackets
 
getIdByPacket(Class<? extends IPacket>) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
getInt(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 32-bit integer at the specified absolute index in this buffer.
getIntLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 32-bit integer at the specified absolute index in this buffer with Little Endian Byte Order.
getLong(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 64-bit long integer at the specified absolute index in this buffer.
getLongLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 64-bit long integer at the specified absolute index in this buffer in Little Endian Byte Order.
getMedium(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 24-bit medium integer at the specified absolute index in this buffer.
getMediumLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 24-bit medium integer at the specified absolute index in this buffer in the Little Endian Byte Order.
getPacket(ConnectionState, PacketDirection, int, int) - Static method in enum net.raphimc.netminecraft.constants.MCPackets
 
getPacketById(int) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
getPort() - Method in class net.raphimc.netminecraft.util.ServerAddress
 
getRawAddress() - Method in class net.raphimc.netminecraft.util.ServerAddress
 
getReadVarint() - Method in class net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder
 
getResult() - Method in class net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder
 
getShort(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 16-bit short integer at the specified absolute index in this buffer.
getShortLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 16-bit short integer at the specified absolute index in this buffer in Little Endian Byte Order.
getState() - Method in enum net.raphimc.netminecraft.constants.MCPackets
 
getTargetClassByPacket(Class<? extends IPacket>) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
getUnsignedByte(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned byte at the specified absolute index in this buffer.
getUnsignedInt(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 32-bit integer at the specified absolute index in this buffer.
getUnsignedIntLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 32-bit integer at the specified absolute index in this buffer in Little Endian Byte Order.
getUnsignedMedium(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 24-bit medium integer at the specified absolute index in this buffer.
getUnsignedMediumLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 24-bit medium integer at the specified absolute index in this buffer in Little Endian Byte Order.
getUnsignedShort(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 16-bit short integer at the specified absolute index in this buffer.
getUnsignedShortLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 16-bit short integer at the specified absolute index in this buffer in Little Endian Byte Order.
getValue() - Method in class net.raphimc.netminecraft.util.LazyLoadBase
 
getVarIntLength(int) - Static method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the number of bytes needed to encode value as a var int.

H

HANDLER_HANDLER_NAME - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
handlerRemoved(ChannelHandlerContext) - Method in class net.raphimc.netminecraft.netty.codec.PacketCompressor
 
hasArray() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if this buffer has a backing byte array.
hashCode() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a hash code which was calculated from the content of this buffer.
hasMemoryAddress() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if this buffer has a reference to the low-level memory address that points to the backing data.

I

indexOf(int, int, byte) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Locates the first occurrence of the specified value in this buffer.
initChannel(SocketChannel) - Method in class net.raphimc.netminecraft.netty.connection.MinecraftChannelInitializer
 
initialize(Bootstrap) - Method in class net.raphimc.netminecraft.netty.connection.NetClient
 
initialize(ServerBootstrap) - Method in class net.raphimc.netminecraft.netty.connection.NetServer
 
internalNioBuffer(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Internal use only: Exposes the internal NIO buffer.
IPacket - Interface in net.raphimc.netminecraft.packet
 
isDirect() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if this buffer is backed by an NIO direct buffer.
isReadable() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if (this.writerIndex - this.readerIndex) is greater than 0.
isReadable(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if this buffer contains equal to or more than the specified number of elements.
isReadOnly() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if this buffer is read-only.
isWritable() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if (this.capacity - this.writerIndex) is greater than 0.
isWritable(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns true if and only if this buffer has enough room to allow writing the specified number of elements.

L

LazyLoadBase<T> - Class in net.raphimc.netminecraft.util
 
LazyLoadBase() - Constructor for class net.raphimc.netminecraft.util.LazyLoadBase
 
load() - Method in class net.raphimc.netminecraft.util.LazyLoadBase
 

M

markReaderIndex() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Marks the current readerIndex in this buffer.
markWriterIndex() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Marks the current writerIndex in this buffer.
maxCapacity() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the maximum allowed capacity of this buffer.
maxWritableBytes() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the maximum possible number of writable bytes, which is equal to (this.maxCapacity - this.writerIndex).
MCPackets - Enum in net.raphimc.netminecraft.constants
 
MCPipeline - Class in net.raphimc.netminecraft.constants
 
MCPipeline() - Constructor for class net.raphimc.netminecraft.constants.MCPipeline
 
MCVersion - Class in net.raphimc.netminecraft.constants
 
MCVersion() - Constructor for class net.raphimc.netminecraft.constants.MCVersion
 
memoryAddress() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the low-level memory address that point to the first byte of ths backing data.
MinecraftChannelInitializer - Class in net.raphimc.netminecraft.netty.connection
 
MinecraftChannelInitializer(Supplier<ChannelHandler>) - Constructor for class net.raphimc.netminecraft.netty.connection.MinecraftChannelInitializer
 
MOJANG_PUBLIC_KEY - Static variable in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
MOJANG_PUBLIC_KEY_SIGNATURE - Static variable in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 

N

net.raphimc.netminecraft.constants - package net.raphimc.netminecraft.constants
 
net.raphimc.netminecraft.netty.codec - package net.raphimc.netminecraft.netty.codec
 
net.raphimc.netminecraft.netty.connection - package net.raphimc.netminecraft.netty.connection
 
net.raphimc.netminecraft.netty.crypto - package net.raphimc.netminecraft.netty.crypto
 
net.raphimc.netminecraft.netty.sizer - package net.raphimc.netminecraft.netty.sizer
 
net.raphimc.netminecraft.packet - package net.raphimc.netminecraft.packet
 
net.raphimc.netminecraft.packet.registry - package net.raphimc.netminecraft.packet.registry
 
net.raphimc.netminecraft.util - package net.raphimc.netminecraft.util
 
NetClient - Class in net.raphimc.netminecraft.netty.connection
 
NetClient(Supplier<ChannelHandler>) - Constructor for class net.raphimc.netminecraft.netty.connection.NetClient
 
NetClient(Supplier<ChannelHandler>, Function<Supplier<ChannelHandler>, ChannelInitializer<SocketChannel>>) - Constructor for class net.raphimc.netminecraft.netty.connection.NetClient
 
NetServer - Class in net.raphimc.netminecraft.netty.connection
 
NetServer(Supplier<ChannelHandler>) - Constructor for class net.raphimc.netminecraft.netty.connection.NetServer
 
NetServer(Supplier<ChannelHandler>, Function<Supplier<ChannelHandler>, ChannelInitializer<SocketChannel>>) - Constructor for class net.raphimc.netminecraft.netty.connection.NetServer
 
nioBuffer() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Exposes this buffer's readable bytes as an NIO ByteBuffer.
nioBuffer(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Exposes this buffer's sub-region as an NIO ByteBuffer.
nioBufferCount() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the maximum number of NIO ByteBuffers that consist this buffer.
nioBuffers() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Exposes this buffer's readable bytes as an NIO ByteBuffer's.
nioBuffers(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.

O

OPTIMIZED_SIZER_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
OptimizedPacketSizer - Class in net.raphimc.netminecraft.netty.codec
 
OptimizedPacketSizer() - Constructor for class net.raphimc.netminecraft.netty.codec.OptimizedPacketSizer
 
order() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Deprecated.
use the Little Endian accessors, e.g. getShortLE, getIntLE instead of creating a buffer with swapped endianness.
order(ByteOrder) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Deprecated.
use the Little Endian accessors, e.g. getShortLE, getIntLE instead of creating a buffer with swapped endianness.

P

PACKET_CODEC_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
PACKET_CODEC_HANDLER_NAME - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
PACKET_REGISTRY_ATTRIBUTE_KEY - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
PacketByteBuf - Class in net.raphimc.netminecraft.packet
 
PacketByteBuf() - Constructor for class net.raphimc.netminecraft.packet.PacketByteBuf
 
PacketByteBuf(ByteBuf) - Constructor for class net.raphimc.netminecraft.packet.PacketByteBuf
 
PacketCodec - Class in net.raphimc.netminecraft.netty.codec
 
PacketCodec() - Constructor for class net.raphimc.netminecraft.netty.codec.PacketCodec
 
PacketCompressor - Class in net.raphimc.netminecraft.netty.codec
 
PacketCompressor() - Constructor for class net.raphimc.netminecraft.netty.codec.PacketCompressor
 
PacketCryptor - Class in net.raphimc.netminecraft.netty.codec
 
PacketCryptor() - Constructor for class net.raphimc.netminecraft.netty.codec.PacketCryptor
 
PacketDirection - Enum in net.raphimc.netminecraft.constants
 
packetId - Variable in class net.raphimc.netminecraft.packet.UnknownPacket
 
PacketRegistry - Class in net.raphimc.netminecraft.packet.registry
 
PacketRegistry(boolean) - Constructor for class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
PacketSizer - Class in net.raphimc.netminecraft.netty.codec
 
PacketSizer() - Constructor for class net.raphimc.netminecraft.netty.codec.PacketSizer
 
process(byte) - Method in class net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder
 

R

read(PacketByteBuf) - Method in interface net.raphimc.netminecraft.packet.IPacket
 
read(PacketByteBuf) - Method in class net.raphimc.netminecraft.packet.UnknownPacket
 
readableBytes() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the number of readable bytes which is equal to (this.writerIndex - this.readerIndex).
readBoolean() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a boolean at the current readerIndex and increases the readerIndex by 1 in this buffer.
readByte() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a byte at the current readerIndex and increases the readerIndex by 1 in this buffer.
readByteArray() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads an array of primitive bytes from this buf.
readByteArray(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads an array of primitive bytes from this buf.
readBytes(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified stream starting at the current readerIndex.
readBytes(GatheringByteChannel, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data to the specified stream starting at the current readerIndex.
readBytes(FileChannel, long, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers this buffer's data starting at the current readerIndex to the specified channel starting at the given file position.
readChar() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 2-byte UTF-16 character at the current readerIndex and increases the readerIndex by 2 in this buffer.
readCharSequence(int, Charset) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a CharSequence with the given length at the current readerIndex and increases the readerIndex by the given length.
readDouble() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 64-bit floating point number at the current readerIndex and increases the readerIndex by 8 in this buffer.
readerIndex() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the readerIndex of this buffer.
readerIndex(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the readerIndex of this buffer.
readFloat() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 32-bit floating point number at the current readerIndex and increases the readerIndex by 4 in this buffer.
readInt() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 32-bit integer at the current readerIndex and increases the readerIndex by 4 in this buffer.
readIntArray() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads an array of primitive ints from this buf.
readIntArray(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads an array of primitive ints from this buf.
readIntLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 32-bit integer at the current readerIndex in the Little Endian Byte Order and increases the readerIndex by 4 in this buffer.
readLong() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 64-bit integer at the current readerIndex and increases the readerIndex by 8 in this buffer.
readLongArray() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads an array of primitive longs from this buf.
readLongArray(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads an array of primitive longs from this buf.
readLongLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 64-bit integer at the current readerIndex in the Little Endian Byte Order and increases the readerIndex by 8 in this buffer.
readMedium() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 24-bit medium integer at the current readerIndex and increases the readerIndex by 3 in this buffer.
readMediumLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
readReadableBytes() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
 
readRetainedSlice(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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).
readShort() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets a 16-bit short integer at the current readerIndex and increases the readerIndex by 2 in this buffer.
readShortLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
readSlice(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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).
readString(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads a string from this buf.
readUnsignedByte() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned byte at the current readerIndex and increases the readerIndex by 1 in this buffer.
readUnsignedInt() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 32-bit integer at the current readerIndex and increases the readerIndex by 4 in this buffer.
readUnsignedIntLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
readUnsignedMedium() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 24-bit medium integer at the current readerIndex and increases the readerIndex by 3 in this buffer.
readUnsignedMediumLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
readUnsignedShort() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Gets an unsigned 16-bit short integer at the current readerIndex and increases the readerIndex by 2 in this buffer.
readUnsignedShortLE() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
readUuid() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads a UUID (universally unique identifier) from this buf.
readVarInt() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Reads a single var int from this buf.
refCnt() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the reference count of this object.
registerC2SPacket(int, Supplier<IPacket>) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
registerS2CPacket(int, Supplier<IPacket>) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
release() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Decreases the reference count by 1 and deallocates this object if the reference count reaches at 0.
release(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Decreases the reference count by the specified decrement and deallocates this object if the reference count reaches at 0.
resetReaderIndex() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Repositions the current readerIndex to the marked readerIndex in this buffer.
resetWriterIndex() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Repositions the current writerIndex to the marked writerIndex in this buffer.
retain(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
 
retain() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
 
retainedDuplicate() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a retained buffer which shares the whole region of this buffer.
retainedSlice() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a retained slice of this buffer's readable bytes.
retainedSlice(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a retained slice of this buffer's sub-region.

S

SERVER_EPOLL_CHILD_EVENTLOOP - Static variable in class net.raphimc.netminecraft.util.LazyLoadBase
 
SERVER_EPOLL_PARENT_EVENTLOOP - Static variable in class net.raphimc.netminecraft.util.LazyLoadBase
 
SERVER_NIO_CHILD_EVENTLOOP - Static variable in class net.raphimc.netminecraft.util.LazyLoadBase
 
SERVER_NIO_PARENT_EVENTLOOP - Static variable in class net.raphimc.netminecraft.util.LazyLoadBase
 
ServerAddress - Class in net.raphimc.netminecraft.util
 
ServerAddress(String, int) - Constructor for class net.raphimc.netminecraft.util.ServerAddress
 
setBoolean(int, boolean) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified boolean at the specified absolute index in this buffer.
setByte(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified byte at the specified absolute index in this buffer.
setBytes(int, ByteBuf) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
Transfers the specified source buffer's data to this buffer starting at the specified absolute index.
setBytes(int, ByteBuf, int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers the specified source buffer's data to this buffer starting at the specified absolute index.
setBytes(int, byte[]) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers the specified source array's data to this buffer starting at the specified absolute index.
setBytes(int, byte[], int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Transfers the specified source array's data to this buffer starting at the specified absolute index.
setBytes(int, ByteBuffer) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
Transfers the content of the specified source stream to this buffer starting at the specified absolute index.
setBytes(int, ScatteringByteChannel, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
Transfers the content of the specified source channel starting at the given file position to this buffer starting at the specified absolute index.
setChar(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 2-byte UTF-16 character at the specified absolute index in this buffer.
setCharSequence(int, CharSequence, Charset) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes the specified CharSequence at the current writerIndex and increases the writerIndex by the written bytes.
setDaemon(boolean) - Method in class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Sets daemon or not for new threads created with this ThreadFactory.
setDouble(int, double) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 64-bit floating-point number at the specified absolute index in this buffer.
setFloat(int, float) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 32-bit floating-point number at the specified absolute index in this buffer.
setIndex(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the readerIndex and writerIndex of this buffer in one shot.
setInt(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 32-bit integer at the specified absolute index in this buffer.
setIntLE(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 32-bit integer at the specified absolute index in this buffer with Little Endian byte order .
setLong(int, long) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 64-bit long integer at the specified absolute index in this buffer.
setLongLE(int, long) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 64-bit long integer at the specified absolute index in this buffer in Little Endian Byte Order.
setMedium(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 24-bit medium integer at the specified absolute index in this buffer.
setMediumLE(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 24-bit medium integer at the specified absolute index in this buffer in the Little Endian Byte Order.
setNameFormat(String) - Method in class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Sets the naming format to use when naming threads (Thread.setName(java.lang.String)) which are created with this ThreadFactory.
setPriority(int) - Method in class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Sets the priority for new threads created with this ThreadFactory.
setShort(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 16-bit short integer at the specified absolute index in this buffer.
setShortLE(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 16-bit short integer at the specified absolute index in this buffer with the Little Endian Byte Order.
setThreadFactory(ThreadFactory) - Method in class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Sets the backing ThreadFactory for new threads created with this ThreadFactory.
setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Method in class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Sets the Thread.UncaughtExceptionHandler for new threads created with this ThreadFactory.
setZero(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Fills this buffer with NUL (0x00) starting at the specified absolute index.
signNonce(PrivateKey, byte[], long) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 
SIZER_HANDLER - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
SIZER_HANDLER_NAME - Static variable in class net.raphimc.netminecraft.constants.MCPipeline
 
skipBytes(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Increases the current readerIndex by the specified length in this buffer.
slice() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a slice of this buffer's readable bytes.
slice(int, int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns a slice of this buffer's sub-region.

T

ThreadFactoryBuilder - Class in net.raphimc.netminecraft.util
A ThreadFactory builder, providing any combination of these features: whether threads should be marked as daemon threads a naming format a thread priority an uncaught exception handler a backing thread factory
ThreadFactoryBuilder() - Constructor for class net.raphimc.netminecraft.util.ThreadFactoryBuilder
Creates a new ThreadFactory builder.
toSocketAddress() - Method in class net.raphimc.netminecraft.util.ServerAddress
 
toString(Charset) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Decodes this buffer's readable bytes into a string with the specified character set name.
toString(int, int, Charset) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Decodes this buffer's sub-region into a string with the specified character set.
toString() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the string representation of this buffer.
touch() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
 
touch(Object) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
 

U

UnknownPacket - Class in net.raphimc.netminecraft.packet
 
UnknownPacket() - Constructor for class net.raphimc.netminecraft.packet.UnknownPacket
 
UnknownPacket(int, byte[]) - Constructor for class net.raphimc.netminecraft.packet.UnknownPacket
 
unregisterC2SPacket(int) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
unregisterS2CPacket(int) - Method in class net.raphimc.netminecraft.packet.registry.PacketRegistry
 
unwrap() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Return the underlying buffer instance if this buffer is a wrapper of another buffer.
useDefaultPipeline() - Static method in class net.raphimc.netminecraft.constants.MCPipeline
 
useOptimizedPipeline() - Static method in class net.raphimc.netminecraft.constants.MCPipeline
 
UUIDAdapter - Class in net.raphimc.netminecraft.util
 
UUIDAdapter() - Constructor for class net.raphimc.netminecraft.util.UUIDAdapter
 

V

v1_10 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_11 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_11_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_12 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_12_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_12_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_13 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_13_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_13_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_14 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_14_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_14_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_14_3 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_14_4 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_15 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_15_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_15_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_16 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_16_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_16_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_16_3 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_16_4 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_17 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_17_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_18 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_18_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_19 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_19_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_7_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_7_6 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_8 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_9 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_9_1 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_9_2 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
v1_9_3 - Static variable in class net.raphimc.netminecraft.constants.MCVersion
 
valueOf(String) - Static method in enum net.raphimc.netminecraft.constants.ConnectionState
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum net.raphimc.netminecraft.constants.MCPackets
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum net.raphimc.netminecraft.constants.PacketDirection
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder.DecodeResult
Returns the enum constant of this type with the specified name.
values() - Static method in enum net.raphimc.netminecraft.constants.ConnectionState
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum net.raphimc.netminecraft.constants.MCPackets
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum net.raphimc.netminecraft.constants.PacketDirection
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder.DecodeResult
Returns an array containing the constants of this enum type, in the order they are declared.
VarIntByteDecoder - Class in net.raphimc.netminecraft.netty.sizer
 
VarIntByteDecoder() - Constructor for class net.raphimc.netminecraft.netty.sizer.VarIntByteDecoder
 
VarIntByteDecoder.DecodeResult - Enum in net.raphimc.netminecraft.netty.sizer
 
verifySignedNonce(PublicKey, byte[], long, byte[]) - Static method in class net.raphimc.netminecraft.netty.crypto.CryptUtil
 

W

writableBytes() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the number of writable bytes which is equal to (this.capacity - this.writerIndex).
write(PacketByteBuf) - Method in interface net.raphimc.netminecraft.packet.IPacket
 
write(PacketByteBuf) - Method in class net.raphimc.netminecraft.packet.UnknownPacket
 
writeBoolean(boolean) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified boolean at the current writerIndex and increases the writerIndex by 1 in this buffer.
writeByte(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified byte at the current writerIndex and increases the writerIndex by 1 in this buffer.
writeByteArray(byte[]) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes an array of primitive bytes to this buf.
writeBytes(ByteBuf) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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 net.raphimc.netminecraft.packet.PacketByteBuf
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.
writeChar(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 2-byte UTF-16 character at the current writerIndex and increases the writerIndex by 2 in this buffer.
writeCharSequence(CharSequence, Charset) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes the specified CharSequence at the current writerIndex and increases the writerIndex by the written bytes.
writeDouble(double) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 64-bit floating point number at the current writerIndex and increases the writerIndex by 8 in this buffer.
writeFloat(float) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 32-bit floating point number at the current writerIndex and increases the writerIndex by 4 in this buffer.
writeInt(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 32-bit integer at the current writerIndex and increases the writerIndex by 4 in this buffer.
writeIntArray(int[]) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes an array of primitive ints to this buf.
writeIntLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
writeLong(long) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 64-bit long integer at the current writerIndex and increases the writerIndex by 8 in this buffer.
writeLongArray(long[]) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes an array of primitive longs to this buf.
writeLongLE(long) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
writeMedium(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 24-bit medium integer at the current writerIndex and increases the writerIndex by 3 in this buffer.
writeMediumLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
writerIndex() - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Returns the writerIndex of this buffer.
writerIndex(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the writerIndex of this buffer.
writeShort(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Sets the specified 16-bit short integer at the current writerIndex and increases the writerIndex by 2 in this buffer.
writeShortLE(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
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.
writeString(String) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes a string to this buf.
writeUuid(UUID) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes a UUID (universally unique identifier) to this buf.
writeVarInt(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Writes a single var int to this buf.
writeZero(int) - Method in class net.raphimc.netminecraft.packet.PacketByteBuf
Fills this buffer with NUL (0x00) starting at the current writerIndex and increases the writerIndex by the specified length.
A B C D E F G H I L M N O P R S T U V W 
Skip navigation links