Record Class YOffset.Fixed

java.lang.Object
java.lang.Record
net.minecraft.world.gen.YOffset.Fixed
Record Components:
y -
All Implemented Interfaces:
YOffset
Enclosing interface:
YOffset

public static record YOffset.Fixed(int y) extends Record implements YOffset
Mappings:
Namespace Name
named net/minecraft/world/gen/YOffset$Fixed
intermediary net/minecraft/class_5843$class_5845
official ete$b
named y
intermediary comp_508
official e
  • Nested Class Summary

    Nested classes/interfaces inherited from interface net.minecraft.world.gen.YOffset

    YOffset.AboveBottom, YOffset.BelowTop, YOffset.Fixed
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<YOffset.Fixed>
     
    private final int
    The field for the y record component.

    Fields inherited from interface net.minecraft.world.gen.YOffset

    BOTTOM, OFFSET_CODEC, TOP
  • Constructor Summary

    Constructors
    Constructor
    Description
    Fixed(int y)
    Creates an instance of a Fixed record class.
  • Method Summary

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

    Methods inherited from class java.lang.Object

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

    • y

      private final int y
      The field for the y record component.
    • CODEC

      public static final com.mojang.serialization.Codec<YOffset.Fixed> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/world/gen/YOffset$Fixed;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_28920 Lnet/minecraft/class_5843$class_5845;field_28920:Lcom/mojang/serialization/Codec;
      official d Lete$b;d:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • Fixed

      public Fixed(int y)
      Creates an instance of a Fixed record class.
      Parameters:
      y - the value for the y record component
  • Method Details

    • getY

      public int getY(HeightContext context)
      Specified by:
      getY in interface YOffset
      Mappings:
      Namespace Name Mixin selector
      named getY Lnet/minecraft/world/gen/YOffset;getY(Lnet/minecraft/world/gen/HeightContext;)I
      intermediary method_33844 Lnet/minecraft/class_5843;method_33844(Lnet/minecraft/class_5868;)I
      official a Lete;a(Leth;)I
    • toString

      public 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 '=='.
      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.
    • y

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