Record Class AAIBB

java.lang.Object
java.lang.Record
dev.latvian.mods.klib.math.AAIBB

public record AAIBB(int minX, int minY, int minZ, int maxX, int maxY, int maxZ) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<AAIBB>
     
    static final net.minecraft.network.codec.StreamCodec<io.netty.buffer.ByteBuf,AAIBB>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    AAIBB(int[] array)
     
    AAIBB(int minX, int minY, int minZ, int maxX, int maxY, int maxZ)
    Creates an instance of a AAIBB record class.
    AAIBB(net.minecraft.core.Vec3i min, net.minecraft.core.Vec3i max)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.world.phys.AABB
     
    it.unimi.dsi.fastutil.longs.LongSet
     
    void
    collectChunkPositions(it.unimi.dsi.fastutil.longs.LongSet chunks)
     
    boolean
    contains(int x, int y, int z)
     
    boolean
    containsChunk(int x, int z)
     
    boolean
    containsChunk(net.minecraft.world.level.ChunkPos pos)
     
    boolean
    containsSection(int x, int y, int z)
     
    boolean
    containsSection(net.minecraft.core.SectionPos pos)
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    void
    forEveryEdgePosition(Consumer<net.minecraft.core.BlockPos> consumer)
     
    final int
    Returns a hash code value for this object.
    net.minecraft.core.BlockPos
    max()
     
    int
    Returns the value of the maxX record component.
    int
    Returns the value of the maxY record component.
    int
    Returns the value of the maxZ record component.
    net.minecraft.core.BlockPos
    min()
     
    int
    Returns the value of the minX record component.
    int
    Returns the value of the minY record component.
    int
    Returns the value of the minZ record component.
    int[]
     
     
    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

    • CODEC

      public static final com.mojang.serialization.Codec<AAIBB> CODEC
    • STREAM_CODEC

      public static final net.minecraft.network.codec.StreamCodec<io.netty.buffer.ByteBuf,AAIBB> STREAM_CODEC
  • Constructor Details

    • AAIBB

      public AAIBB(int minX, int minY, int minZ, int maxX, int maxY, int maxZ)
      Creates an instance of a AAIBB record class.
      Parameters:
      minX - the value for the minX record component
      minY - the value for the minY record component
      minZ - the value for the minZ record component
      maxX - the value for the maxX record component
      maxY - the value for the maxY record component
      maxZ - the value for the maxZ record component
    • AAIBB

      public AAIBB(int[] array)
    • AAIBB

      public AAIBB(net.minecraft.core.Vec3i min, net.minecraft.core.Vec3i max)
  • Method Details

    • min

      public net.minecraft.core.BlockPos min()
    • max

      public net.minecraft.core.BlockPos max()
    • aabb

      public net.minecraft.world.phys.AABB aabb()
    • toIntArray

      public int[] toIntArray()
    • toIntStream

      public IntStream toIntStream()
    • collectChunkPositions

      public void collectChunkPositions(it.unimi.dsi.fastutil.longs.LongSet chunks)
    • collectChunkPositions

      public it.unimi.dsi.fastutil.longs.LongSet collectChunkPositions()
    • contains

      public boolean contains(int x, int y, int z)
    • containsChunk

      public boolean containsChunk(int x, int z)
    • containsChunk

      public boolean containsChunk(net.minecraft.world.level.ChunkPos pos)
    • containsSection

      public boolean containsSection(int x, int y, int z)
    • containsSection

      public boolean containsSection(net.minecraft.core.SectionPos pos)
    • forEveryEdgePosition

      public void forEveryEdgePosition(Consumer<net.minecraft.core.BlockPos> consumer)
    • 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 '=='.
      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.
    • minX

      public int minX()
      Returns the value of the minX record component.
      Returns:
      the value of the minX record component
    • minY

      public int minY()
      Returns the value of the minY record component.
      Returns:
      the value of the minY record component
    • minZ

      public int minZ()
      Returns the value of the minZ record component.
      Returns:
      the value of the minZ record component
    • maxX

      public int maxX()
      Returns the value of the maxX record component.
      Returns:
      the value of the maxX record component
    • maxY

      public int maxY()
      Returns the value of the maxY record component.
      Returns:
      the value of the maxY record component
    • maxZ

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