Package net.minecraft.network.codec
Record Class IdDispatchCodec.Entry<B,V,T>
java.lang.Object
java.lang.Record
net.minecraft.network.codec.IdDispatchCodec.Entry<B,V,T>
- Enclosing class:
IdDispatchCodec<B extends io.netty.buffer.ByteBuf,
V, T>
static record IdDispatchCodec.Entry<B,V,T> (StreamCodec<? super B,? extends V> serializer, T type)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final StreamCodec
<? super B, ? extends V> The field for theserializer
record component.private final T
The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionEntry
(StreamCodec<? super B, ? extends V> serializer, T type) Creates an instance of aEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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, ? extends V> 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
-
serializer
The field for theserializer
record component. -
type
The field for thetype
record component.
-
-
Constructor Details
-
Entry
Entry(StreamCodec<? super B, ? extends V> serializer, T type) Creates an instance of aEntry
record class.- Parameters:
serializer
- the value for theserializer
record componenttype
- the value for thetype
record component
-
-
Method Details
-
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)
. -
serializer
Returns the value of theserializer
record component.- Returns:
- the value of the
serializer
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-