Record Class RegistryAccess.RegistryEntry<T>

java.lang.Object
java.lang.Record
net.minecraft.core.RegistryAccess.RegistryEntry<T>
Enclosing interface:
RegistryAccess

public static record RegistryAccess.RegistryEntry<T>(ResourceKey<? extends Registry<T>> key, Registry<T> value) extends Record
  • Field Details

    • key

      private final ResourceKey<? extends Registry<T>> key
      The field for the key record component.
    • value

      private final Registry<T> value
      The field for the value record component.
  • Constructor Details

    • RegistryEntry

      public RegistryEntry(ResourceKey<? extends Registry<T>> key, Registry<T> value)
      Creates an instance of a RegistryEntry record class.
      Parameters:
      key - the value for the key record component
      value - the value for the value record component
  • Method Details

    • fromMapEntry

      private static <T, R extends Registry<? extends T>> RegistryAccess.RegistryEntry<T> fromMapEntry(Map.Entry<? extends ResourceKey<? extends Registry<?>>,R> p_206242_)
    • fromHolder

      private static <T> RegistryAccess.RegistryEntry<T> fromHolder(Holder.Reference<? extends Registry<? extends T>> p_206240_)
    • fromUntyped

      private static <T> RegistryAccess.RegistryEntry<T> fromUntyped(ResourceKey<? extends Registry<?>> p_206244_, Registry<?> p_206245_)
    • freeze

      private RegistryAccess.RegistryEntry<T> freeze()
    • 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 o)
      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:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • key

      public ResourceKey<? extends Registry<T>> key()
      Returns the value of the key record component.
      Returns:
      the value of the key record component
    • value

      public Registry<T> value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component