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
FieldsModifier and TypeFieldDescriptionprivate final StreamCodec<? super B, ? extends V> The field for theserializerrecord component.private final TThe field for thetyperecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEntry(StreamCodec<? super B, ? extends V> serializer, T type) Creates an instance of aEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.StreamCodec<? super B, ? extends V> Returns the value of theserializerrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Field Details
-
serializer
The field for theserializerrecord component. -
type
The field for thetyperecord component.
-
-
Constructor Details
-
Entry
Entry(StreamCodec<? super B, ? extends V> serializer, T type) Creates an instance of aEntryrecord class.- Parameters:
serializer- the value for theserializerrecord componenttype- the value for thetyperecord 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 theserializerrecord component.- Returns:
- the value of the
serializerrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-