Package net.minecraft

Record Class class_6686.class_6694.class_6698.class_6699

java.lang.Object
java.lang.Record
net.minecraft.class_6686.class_6694.class_6698.class_6699
Record Components:
biome -
blockX -
blockY -
blockZ -
Enclosing class:
class_6686.class_6694.class_6698

private static record class_6686.class_6694.class_6698.class_6699(Biome biome, int blockX, int blockY, int blockZ) extends Record
Mappings:
Namespace Name
official csv$f$c$a
intermediary net/minecraft/class_6686$class_6694$class_6698$class_6699
named net/minecraft/class_6686$class_6694$class_6698$class_6699
official a
intermediary comp_196
named biome
official b
intermediary comp_197
named blockX
official c
intermediary comp_198
named blockY
official d
intermediary comp_199
named blockZ
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final Biome
    The field for the biome record component.
    private final int
    The field for the blockX record component.
    private final int
    The field for the blockY record component.
    private final int
    The field for the blockZ record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    class_6699(Biome biome, int int2, int int3, int int4)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the biome record component.
    int
    Returns the value of the blockX record component.
    int
    Returns the value of the blockY record component.
    int
    Returns the value of the blockZ record component.
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • biome

      private final Biome biome
      The field for the biome record component.
    • blockX

      private final int blockX
      The field for the blockX record component.
    • blockY

      private final int blockY
      The field for the blockY record component.
    • blockZ

      private final int blockZ
      The field for the blockZ record component.
  • Constructor Details

    • class_6699

      class_6699(Biome biome, int int2, int int3, int int4)
  • Method Details

    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • biome

      public Biome biome()
      Returns the value of the biome record component.
      Returns:
      the value of the biome record component
    • blockX

      public int blockX()
      Returns the value of the blockX record component.
      Returns:
      the value of the blockX record component
    • blockY

      public int blockY()
      Returns the value of the blockY record component.
      Returns:
      the value of the blockY record component
    • blockZ

      public int blockZ()
      Returns the value of the blockZ record component.
      Returns:
      the value of the blockZ record component