Package net.minecraft
Record Class class_7635
java.lang.Object
java.lang.Record
net.minecraft.class_7635
- Record Components:
entries
-
- Mappings:
Namespace Name official rt
intermediary net/minecraft/class_7635
named net/minecraft/class_7635
official c
intermediary comp_965
named entries
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
static final record
A pair of a player's UUID and the signature of the last message they saw. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<class_7635.LastSeenMessage>
The field for theentries
record component.static class_7635
static final int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionentries()
Returns the value of theentries
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.void
method_44980
(DataOutput dataOutput) void
method_44981
(PacketByteBuf packetByteBuf) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
entries
The field for theentries
record component. -
field_39883
- Mappings:
Namespace Name Mixin selector official a
Lrt;a:Lrt;
intermediary field_39883
Lnet/minecraft/class_7635;field_39883:Lnet/minecraft/class_7635;
named field_39883
Lnet/minecraft/class_7635;field_39883:Lnet/minecraft/class_7635;
-
field_39884
public static final int field_39884- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lrt;b:I
intermediary field_39884
Lnet/minecraft/class_7635;field_39884:I
named field_39884
Lnet/minecraft/class_7635;field_39884:I
-
-
Constructor Details
-
class_7635
-
class_7635
-
-
Method Details
-
method_44981
- Mappings:
Namespace Name Mixin selector official a
Lrt;a(Lqx;)V
intermediary method_44981
Lnet/minecraft/class_7635;method_44981(Lnet/minecraft/class_2540;)V
named method_44981
Lnet/minecraft/class_7635;method_44981(Lnet/minecraft/network/PacketByteBuf;)V
-
method_44980
- Throws:
IOException
- Mappings:
Namespace Name Mixin selector official a
Lrt;a(Ljava/io/DataOutput;)V
intermediary method_44980
Lnet/minecraft/class_7635;method_44980(Ljava/io/DataOutput;)V
named method_44980
Lnet/minecraft/class_7635;method_44980(Ljava/io/DataOutput;)V
-
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)
. -
entries
Returns the value of theentries
record component.- Returns:
- the value of the
entries
record component
-