Record Class MultiblockLayer

java.lang.Object
java.lang.Record
com.portingdeadmods.portingdeadlibs.api.multiblocks.MultiblockLayer

public record MultiblockLayer(boolean dynamic, IntRange range, int[] layer, it.unimi.dsi.fastutil.ints.IntIntPair widths) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    MultiblockLayer(boolean dynamic, IntRange range, int[] layer)
     
    MultiblockLayer(boolean dynamic, IntRange range, int[] layer, it.unimi.dsi.fastutil.ints.IntIntPair widths)
    Creates an instance of a MultiblockLayer record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns the value of the dynamic record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    it.unimi.dsi.fastutil.ints.IntIntPair
     
    final int
    Returns a hash code value for this object.
    int[]
    Returns the value of the layer record component.
    load(net.minecraft.nbt.CompoundTag tag)
     
    Returns the value of the range record component.
    net.minecraft.nbt.CompoundTag
     
     
    setWidths(int xWidth, int zWidth)
     
    final String
    Returns a string representation of this record class.
    it.unimi.dsi.fastutil.ints.IntIntPair
    Returns the value of the widths record component.

    Methods inherited from class java.lang.Object

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

    • MultiblockLayer

      public MultiblockLayer(boolean dynamic, IntRange range, int[] layer)
    • MultiblockLayer

      public MultiblockLayer(boolean dynamic, IntRange range, int[] layer, it.unimi.dsi.fastutil.ints.IntIntPair widths)
      Creates an instance of a MultiblockLayer record class.
      Parameters:
      dynamic - the value for the dynamic record component
      range - the value for the range record component
      layer - the value for the layer record component
      widths - the value for the widths record component
  • Method Details

    • setDynamic

      public MultiblockLayer setDynamic(IntRange size)
    • setWidths

      public MultiblockLayer setWidths(int xWidth, int zWidth)
    • load

      public static MultiblockLayer load(net.minecraft.nbt.CompoundTag tag)
    • save

      public net.minecraft.nbt.CompoundTag save()
    • getWidths

      public it.unimi.dsi.fastutil.ints.IntIntPair getWidths()
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • dynamic

      public boolean dynamic()
      Returns the value of the dynamic record component.
      Returns:
      the value of the dynamic record component
    • range

      public IntRange range()
      Returns the value of the range record component.
      Returns:
      the value of the range record component
    • layer

      public int[] layer()
      Returns the value of the layer record component.
      Returns:
      the value of the layer record component
    • widths

      public it.unimi.dsi.fastutil.ints.IntIntPair widths()
      Returns the value of the widths record component.
      Returns:
      the value of the widths record component