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 SummaryFieldsModifier and TypeFieldDescriptionprivate final StreamCodec<? super B, ? extends V> The field for theserializerrecord component.private final TThe field for thetyperecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionEntry(StreamCodec<? super B, ? extends V> serializer, T type) Creates an instance of aEntryrecord class.
- 
Method SummaryModifier 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- 
serializerThe field for theserializerrecord component.
- 
typeThe field for thetyperecord component.
 
- 
- 
Constructor Details- 
EntryEntry(StreamCodec<? super B, ? extends V> serializer, T type) Creates an instance of aEntryrecord class.- Parameters:
- serializer- the value for the- serializerrecord component
- type- the value for the- typerecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
serializerReturns the value of theserializerrecord component.- Returns:
- the value of the serializerrecord component
 
- 
typeReturns the value of thetyperecord component.- Returns:
- the value of the typerecord component
 
 
-