Package net.minecraft
Record Class class_9136.class_9138<B,V,T>
java.lang.Object
java.lang.Record
net.minecraft.class_9136.class_9138<B,V,T>
- Record Components:
serializer-type-
- Enclosing class:
class_9136<B extends ByteBuf,V, T>
private static record class_9136.class_9138<B,V,T> (PacketCodec<? super B,? extends V> serializer, T type)
extends Record
- Mappings:
Namespace Name official xn$bintermediary net/minecraft/class_9136$class_9138named net/minecraft/class_9136$class_9138official aintermediary comp_2228named serializerofficial bintermediary comp_2229named type
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final PacketCodec<? super B,? extends V> The field for theserializerrecord component.private final TThe field for thetyperecord component. -
Constructor Summary
Constructors -
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.PacketCodec<? 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
-
class_9138
class_9138(PacketCodec<? super B, ? extends V> packetCodec, T t)
-
-
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
-