Record Class MobSpawnerEntry

java.lang.Object
java.lang.Record
net.minecraft.world.MobSpawnerEntry
Record Components:
entity -
customSpawnRules -

public record MobSpawnerEntry(NbtCompound entity, Optional<MobSpawnerEntry.CustomSpawnRules> customSpawnRules) extends Record
Mappings:
Namespace Name
official ckm
intermediary net/minecraft/class_1952
named net/minecraft/world/MobSpawnerEntry
official d
intermediary comp_64
named entity
official e
intermediary comp_65
named customSpawnRules
  • 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.
    • ENTITY_KEY

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

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

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

  • Method Details

    • getNbt

      public NbtCompound getNbt()
      Mappings:
      Namespace Name Mixin selector
      official a Lckm;a()Lqp;
      intermediary method_38093 Lnet/minecraft/class_1952;method_38093()Lnet/minecraft/class_2487;
      named getNbt Lnet/minecraft/world/MobSpawnerEntry;getNbt()Lnet/minecraft/nbt/NbtCompound;
    • getCustomSpawnRules

      public Optional<MobSpawnerEntry.CustomSpawnRules> getCustomSpawnRules()
      Mappings:
      Namespace Name Mixin selector
      official b Lckm;b()Ljava/util/Optional;
      intermediary method_38097 Lnet/minecraft/class_1952;method_38097()Ljava/util/Optional;
      named getCustomSpawnRules Lnet/minecraft/world/MobSpawnerEntry;getCustomSpawnRules()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