Package net.minecraft.network.protocol
Record Class ProtocolInfoBuilder.CodecEntry<T extends PacketListener,P extends Packet<? super T>,B extends io.netty.buffer.ByteBuf>
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.ProtocolInfoBuilder.CodecEntry<T,P,B>
- Enclosing class:
ProtocolInfoBuilder<T extends PacketListener,
B extends io.netty.buffer.ByteBuf>
static record ProtocolInfoBuilder.CodecEntry<T extends PacketListener,P extends Packet<? super T>,B extends io.netty.buffer.ByteBuf> (PacketType<P extends Packet<? super T>> type, StreamCodec<? super B extends io.netty.buffer.ByteBuf,P extends Packet<? super T>> serializer)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final StreamCodec
<? super B, P> The field for theserializer
record component.private final PacketType
<P> The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionCodecEntry
(PacketType<P> type, StreamCodec<? super B, P> serializer) Creates an instance of aCodecEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addToBuilder
(ProtocolCodecBuilder<io.netty.buffer.ByteBuf, T> p_328095_, Function<io.netty.buffer.ByteBuf, B> p_333803_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.StreamCodec
<? super B, P> Returns the value of theserializer
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Field Details
-
type
The field for thetype
record component. -
serializer
private final StreamCodec<? super B extends io.netty.buffer.ByteBuf,P extends Packet<? super T>> serializerThe field for theserializer
record component.
-
-
Constructor Details
-
CodecEntry
CodecEntry(PacketType<P> type, StreamCodec<? super B, P> serializer) Creates an instance of aCodecEntry
record class.- Parameters:
type
- the value for thetype
record componentserializer
- the value for theserializer
record component
-
-
Method Details
-
addToBuilder
public void addToBuilder(ProtocolCodecBuilder<io.netty.buffer.ByteBuf, T> p_328095_, Function<io.netty.buffer.ByteBuf, B> p_333803_) -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
serializer
Returns the value of theserializer
record component.- Returns:
- the value of the
serializer
record component
-