Package net.minecraft.registry
Record Class SerializableRegistries.SerializedRegistryEntry
java.lang.Object
java.lang.Record
net.minecraft.registry.SerializableRegistries.SerializedRegistryEntry
- Record Components:
- id-
- data-
- Enclosing class:
- SerializableRegistries
public static record SerializableRegistries.SerializedRegistryEntry(Identifier id, Optional<NbtElement> data)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/registry/SerializableRegistries$SerializedRegistryEntry- intermediary - net/minecraft/class_7782$class_9176- official - ki$a- named - id- intermediary - comp_2256- official - b- named - data- intermediary - comp_2257- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final Optional<NbtElement> The field for thedatarecord component.private final IdentifierThe field for theidrecord component.static final PacketCodec<ByteBuf, SerializableRegistries.SerializedRegistryEntry> 
- 
Constructor SummaryConstructorsConstructorDescriptionSerializedRegistryEntry(Identifier identifier, Optional<NbtElement> optional) 
- 
Method SummaryModifier and TypeMethodDescriptiondata()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
idThe field for theidrecord component.
- 
dataThe field for thedatarecord component.
- 
PACKET_CODECpublic static final PacketCodec<ByteBuf,SerializableRegistries.SerializedRegistryEntry> PACKET_CODEC- Mappings:
- Namespace - Name - Mixin selector - named - PACKET_CODEC- Lnet/minecraft/registry/SerializableRegistries$SerializedRegistryEntry;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;- intermediary - field_48772- Lnet/minecraft/class_7782$class_9176;field_48772:Lnet/minecraft/class_9139;- official - a- Lki$a;a:Lyn;
 
 
- 
- 
Constructor Details- 
SerializedRegistryEntry
 
- 
- 
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).
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
dataReturns the value of thedatarecord component.- Returns:
- the value of the datarecord component
 
 
-