Record Class RegistryBuilder.Registries

java.lang.Object
java.lang.Record
net.minecraft.registry.RegistryBuilder.Registries
Record Components:
owner -
lookup -
registries -
registeredValues -
errors -
Enclosing class:
RegistryBuilder

private static record RegistryBuilder.Registries(RegistryBuilder.AnyOwner owner, RegistryBuilder.StandAloneEntryCreatingLookup lookup, Map<Identifier,RegistryEntryLookup<?>> registries, Map<RegistryKey<?>,RegistryBuilder.RegisteredValue<?>> registeredValues, List<RuntimeException> errors) extends Record
Mappings:
Namespace Name
official hp$a
intermediary net/minecraft/class_7877$class_7878
named net/minecraft/registry/RegistryBuilder$Registries
official a
intermediary comp_1135
named owner
official b
intermediary comp_1136
named lookup
official c
intermediary comp_1137
named registries
official d
intermediary comp_1138
named registeredValues
official e
intermediary comp_1139
named errors
  • Field Details

  • Constructor Details

  • Method Details

    • of

      public static RegistryBuilder.Registries of(DynamicRegistryManager dynamicRegistryManager, Stream<RegistryKey<? extends Registry<?>>> registryRefs)
      Mappings:
      Namespace Name Mixin selector
      official a Lhp$a;a(Lhn;Ljava/util/stream/Stream;)Lhp$a;
      intermediary method_46796 Lnet/minecraft/class_7877$class_7878;method_46796(Lnet/minecraft/class_5455;Ljava/util/stream/Stream;)Lnet/minecraft/class_7877$class_7878;
      named of Lnet/minecraft/registry/RegistryBuilder$Registries;of(Lnet/minecraft/registry/DynamicRegistryManager;Ljava/util/stream/Stream;)Lnet/minecraft/registry/RegistryBuilder$Registries;
    • createRegisterable

      public <T> Registerable<T> createRegisterable()
      Mappings:
      Namespace Name Mixin selector
      official a Lhp$a;a()Lnl;
      intermediary method_46787 Lnet/minecraft/class_7877$class_7878;method_46787()Lnet/minecraft/class_7891;
      named createRegisterable Lnet/minecraft/registry/RegistryBuilder$Registries;createRegisterable()Lnet/minecraft/registry/Registerable;
    • validateReferences

      public void validateReferences()
      Mappings:
      Namespace Name Mixin selector
      official b Lhp$a;b()V
      intermediary method_46797 Lnet/minecraft/class_7877$class_7878;method_46797()V
      named validateReferences Lnet/minecraft/registry/RegistryBuilder$Registries;validateReferences()V
    • throwErrors

      public void throwErrors()
      Mappings:
      Namespace Name Mixin selector
      official c Lhp$a;c()V
      intermediary method_46798 Lnet/minecraft/class_7877$class_7878;method_46798()V
      named throwErrors Lnet/minecraft/registry/RegistryBuilder$Registries;throwErrors()V
    • addOwner

      public void addOwner(RegistryEntryOwner<?> owner)
      Mappings:
      Namespace Name Mixin selector
      official a Lhp$a;a(Lhc;)V
      intermediary method_46795 Lnet/minecraft/class_7877$class_7878;method_46795(Lnet/minecraft/class_7876;)V
      named addOwner Lnet/minecraft/registry/RegistryBuilder$Registries;addOwner(Lnet/minecraft/registry/entry/RegistryEntryOwner;)V
    • setReferenceEntryValues

      public void setReferenceEntryValues(RegistryWrapper.WrapperLookup lookup)
      Mappings:
      Namespace Name Mixin selector
      official a Lhp$a;a(Lhb$b;)V
      intermediary method_46793 Lnet/minecraft/class_7877$class_7878;method_46793(Lnet/minecraft/class_7225$class_7874;)V
      named setReferenceEntryValues Lnet/minecraft/registry/RegistryBuilder$Registries;setReferenceEntryValues(Lnet/minecraft/registry/RegistryWrapper$WrapperLookup;)V
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • owner

      public RegistryBuilder.AnyOwner owner()
      Returns the value of the owner record component.
      Returns:
      the value of the owner record component
    • lookup

      Returns the value of the lookup record component.
      Returns:
      the value of the lookup record component
    • registries

      public Map<Identifier,RegistryEntryLookup<?>> registries()
      Returns the value of the registries record component.
      Returns:
      the value of the registries record component
    • registeredValues

      public Map<RegistryKey<?>,RegistryBuilder.RegisteredValue<?>> registeredValues()
      Returns the value of the registeredValues record component.
      Returns:
      the value of the registeredValues record component
    • errors

      public List<RuntimeException> errors()
      Returns the value of the errors record component.
      Returns:
      the value of the errors record component