Record Class Range

java.lang.Object
java.lang.Record
de.rasmusantons.cubiomes.Range
Record Components:
scale - Horizontal scale factor, should be one of 1, 4, 16, 64, or 256 additionally a value of zero bypasses scaling and expects a manual generation entry layer.
x - Lower end of the x-range (west face of the cube)
z - Lower end of the z-range (north face of the cube)
sx - Size along the x-axis
sz - Size along the z-axis
y - Lower and of the y-range (bottom face of the cube)
sy - Vertical size

public record Range(int scale, int x, int z, int sx, int sz, int y, int sy) extends Record
Defines an area or volume for the biome generation. It is given by a position, size and scaling in the horizontal axes, and an optional vertical range. The vertical scaling is equal to 1:1 iff scale == 1, and 1:4 (default biome scale) in all other cases!
  • Constructor Summary

    Constructors
    Constructor
    Description
    Range(int scale, int x, int z, int sx, int sz, int y)
     
    Range(int scale, int x, int z, int sx, int sz, int y, int sy)
    Creates an instance of a Range record class.
  • Method Summary

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

    Methods inherited from class java.lang.Object

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

    • Range

      public Range(int scale, int x, int z, int sx, int sz, int y)
    • Range

      public Range(int scale, int x, int z, int sx, int sz, int y, int sy)
      Creates an instance of a Range record class.
      Parameters:
      scale - the value for the scale record component
      x - the value for the x record component
      z - the value for the z record component
      sx - the value for the sx record component
      sz - the value for the sz record component
      y - the value for the y record component
      sy - the value for the sy record component
  • 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 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.
    • scale

      public int scale()
      Returns the value of the scale record component.
      Returns:
      the value of the scale record component
    • x

      public int x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • z

      public int z()
      Returns the value of the z record component.
      Returns:
      the value of the z record component
    • sx

      public int sx()
      Returns the value of the sx record component.
      Returns:
      the value of the sx record component
    • sz

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

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

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