Record Class MobSpawnerEntry

java.lang.Object
java.lang.Record
net.minecraft.block.spawner.MobSpawnerEntry
Record Components:
entity -
customSpawnRules -
equipment -

public record MobSpawnerEntry(NbtCompound entity, Optional<MobSpawnerEntry.CustomSpawnRules> customSpawnRules, Optional<EquipmentTable> equipment) extends Record
Mappings:
Namespace Name
named net/minecraft/block/spawner/MobSpawnerEntry
intermediary net/minecraft/class_1952
official dcr
named entity
intermediary comp_64
official d
named customSpawnRules
intermediary comp_65
official e
named equipment
intermediary comp_2648
official f
  • Field Details

    • entity

      private final NbtCompound entity
      The field for the entity record component.
    • customSpawnRules

      private final Optional<MobSpawnerEntry.CustomSpawnRules> customSpawnRules
      The field for the customSpawnRules record component.
    • equipment

      private final Optional<EquipmentTable> equipment
      The field for the equipment record component.
    • ENTITY_KEY

      public static final String ENTITY_KEY
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named ENTITY_KEY Lnet/minecraft/block/spawner/MobSpawnerEntry;ENTITY_KEY:Ljava/lang/String;
      intermediary field_40893 Lnet/minecraft/class_1952;field_40893:Ljava/lang/String;
      official a Ldcr;a:Ljava/lang/String;
    • CODEC

      public static final com.mojang.serialization.Codec<MobSpawnerEntry> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/block/spawner/MobSpawnerEntry;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_34460 Lnet/minecraft/class_1952;field_34460:Lcom/mojang/serialization/Codec;
      official b Ldcr;b:Lcom/mojang/serialization/Codec;
    • DATA_POOL_CODEC

      public static final com.mojang.serialization.Codec<DataPool<MobSpawnerEntry>> DATA_POOL_CODEC
      Mappings:
      Namespace Name Mixin selector
      named DATA_POOL_CODEC Lnet/minecraft/block/spawner/MobSpawnerEntry;DATA_POOL_CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_34461 Lnet/minecraft/class_1952;field_34461:Lcom/mojang/serialization/Codec;
      official c Ldcr;c:Lcom/mojang/serialization/Codec;
  • Constructor Details

  • Method Details

    • getNbt

      public NbtCompound getNbt()
      Mappings:
      Namespace Name Mixin selector
      named getNbt Lnet/minecraft/block/spawner/MobSpawnerEntry;getNbt()Lnet/minecraft/nbt/NbtCompound;
      intermediary method_38093 Lnet/minecraft/class_1952;method_38093()Lnet/minecraft/class_2487;
      official a Ldcr;a()Lus;
    • getCustomSpawnRules

      public Optional<MobSpawnerEntry.CustomSpawnRules> getCustomSpawnRules()
      Mappings:
      Namespace Name Mixin selector
      named getCustomSpawnRules Lnet/minecraft/block/spawner/MobSpawnerEntry;getCustomSpawnRules()Ljava/util/Optional;
      intermediary method_38097 Lnet/minecraft/class_1952;method_38097()Ljava/util/Optional;
      official b Ldcr;b()Ljava/util/Optional;
    • getEquipment

      public Optional<EquipmentTable> getEquipment()
      Mappings:
      Namespace Name Mixin selector
      named getEquipment Lnet/minecraft/block/spawner/MobSpawnerEntry;getEquipment()Ljava/util/Optional;
      intermediary method_59717 Lnet/minecraft/class_1952;method_59717()Ljava/util/Optional;
      official c Ldcr;c()Ljava/util/Optional;
    • 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.
    • entity

      public NbtCompound entity()
      Returns the value of the entity record component.
      Returns:
      the value of the entity record component
    • customSpawnRules

      public Optional<MobSpawnerEntry.CustomSpawnRules> customSpawnRules()
      Returns the value of the customSpawnRules record component.
      Returns:
      the value of the customSpawnRules record component
    • equipment

      public Optional<EquipmentTable> equipment()
      Returns the value of the equipment record component.
      Returns:
      the value of the equipment record component