Package net.minecraft.registry
Record Class RegistryPair<T>
java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryPair<T>
- Record Components:
contents-
public record RegistryPair<T>(com.mojang.datafixers.util.Either<RegistryEntry<T>,RegistryKey<T>> contents)
extends Record
- Mappings:
Namespace Name named net/minecraft/registry/RegistryPairintermediary net/minecraft/class_9791official cyenamed contentsintermediary comp_3636official a
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final com.mojang.datafixers.util.Either<RegistryEntry<T>, RegistryKey<T>> The field for thecontentsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionRegistryPair(com.mojang.datafixers.util.Either<RegistryEntry<T>, RegistryKey<T>> either) RegistryPair(RegistryEntry<T> entry) RegistryPair(RegistryKey<T> key) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.datafixers.util.Either<RegistryEntry<T>, RegistryKey<T>> contents()Returns the value of thecontentsrecord component.static <T> com.mojang.serialization.Codec<RegistryPair<T>> createCodec(RegistryKey<Registry<T>> registryRef, com.mojang.serialization.Codec<RegistryEntry<T>> entryCodec) static <T> PacketCodec<RegistryByteBuf, RegistryPair<T>> createPacketCodec(RegistryKey<Registry<T>> registryRef, PacketCodec<RegistryByteBuf, RegistryEntry<T>> entryPacketCodec) final booleanIndicates whether some other object is "equal to" this one.getEntry(RegistryWrapper.WrapperLookup registries) getKey()final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
contents
The field for thecontentsrecord component.
-
-
Constructor Details
-
RegistryPair
- Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/registry/RegistryPair;<init>(Lnet/minecraft/registry/entry/RegistryEntry;)Vintermediary <init>Lnet/minecraft/class_9791;<init>(Lnet/minecraft/class_6880;)Vofficial <init>Lcye;<init>(Lje;)V
-
RegistryPair
- Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/registry/RegistryPair;<init>(Lnet/minecraft/registry/RegistryKey;)Vintermediary <init>Lnet/minecraft/class_9791;<init>(Lnet/minecraft/class_5321;)Vofficial <init>Lcye;<init>(Lalf;)V
-
RegistryPair
-
-
Method Details
-
createCodec
public static <T> com.mojang.serialization.Codec<RegistryPair<T>> createCodec(RegistryKey<Registry<T>> registryRef, com.mojang.serialization.Codec<RegistryEntry<T>> entryCodec) - Mappings:
Namespace Name Mixin selector named createCodecLnet/minecraft/registry/RegistryPair;createCodec(Lnet/minecraft/registry/RegistryKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;intermediary method_60736Lnet/minecraft/class_9791;method_60736(Lnet/minecraft/class_5321;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;official aLcye;a(Lalf;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec;
-
createPacketCodec
public static <T> PacketCodec<RegistryByteBuf,RegistryPair<T>> createPacketCodec(RegistryKey<Registry<T>> registryRef, PacketCodec<RegistryByteBuf, RegistryEntry<T>> entryPacketCodec) - Mappings:
Namespace Name Mixin selector named createPacketCodecLnet/minecraft/registry/RegistryPair;createPacketCodec(Lnet/minecraft/registry/RegistryKey;Lnet/minecraft/network/codec/PacketCodec;)Lnet/minecraft/network/codec/PacketCodec;intermediary method_60737Lnet/minecraft/class_9791;method_60737(Lnet/minecraft/class_5321;Lnet/minecraft/class_9139;)Lnet/minecraft/class_9139;official aLcye;a(Lalf;Lyw;)Lyw;
-
getValue
- Mappings:
Namespace Name Mixin selector named getValueLnet/minecraft/registry/RegistryPair;getValue(Lnet/minecraft/registry/Registry;)Ljava/util/Optional;intermediary method_60740Lnet/minecraft/class_9791;method_60740(Lnet/minecraft/class_2378;)Ljava/util/Optional;official aLcye;a(Ljr;)Ljava/util/Optional;
-
getEntry
- Mappings:
Namespace Name Mixin selector named getEntryLnet/minecraft/registry/RegistryPair;getEntry(Lnet/minecraft/registry/RegistryWrapper$WrapperLookup;)Ljava/util/Optional;intermediary method_60739Lnet/minecraft/class_9791;method_60739(Lnet/minecraft/class_7225$class_7874;)Ljava/util/Optional;official aLcye;a(Ljg$a;)Ljava/util/Optional;
-
getKey
- Mappings:
Namespace Name Mixin selector named getKeyLnet/minecraft/registry/RegistryPair;getKey()Ljava/util/Optional;intermediary method_67385Lnet/minecraft/class_9791;method_67385()Ljava/util/Optional;official aLcye;a()Ljava/util/Optional;
-
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). -
contents
Returns the value of thecontentsrecord component.- Returns:
- the value of the
contentsrecord component
-