Record Class UniqueClimateGenerator.Unique

java.lang.Object
java.lang.Record
com.hypixel.hytale.server.worldgen.climate.UniqueClimateGenerator.Unique
Enclosing class:
UniqueClimateGenerator

public static record UniqueClimateGenerator.Unique(int color, int radius, int radius2, @Nonnull CompletableFuture<Vector2i> position) extends Record
  • Field Details

    • color

      private final int color
      The field for the color record component.
    • radius

      private final int radius
      The field for the radius record component.
    • radius2

      private final int radius2
      The field for the radius2 record component.
    • position

      @Nonnull private final CompletableFuture<Vector2i> position
      The field for the position record component.
    • EMPTY_ARRAY

      public static final UniqueClimateGenerator.Unique[] EMPTY_ARRAY
  • Constructor Details

    • Unique

      public Unique(int color, int radius, @Nonnull CompletableFuture<Vector2i> position)
    • Unique

      public Unique(int color, int radius, int radius2, @Nonnull CompletableFuture<Vector2i> position)
      Creates an instance of a Unique record class.
      Parameters:
      color - the value for the color record component
      radius - the value for the radius record component
      radius2 - the value for the radius2 record component
      position - the value for the position record component
  • Method Details

    • contains

      public boolean contains(int x, int y)
    • 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.
    • color

      public int color()
      Returns the value of the color record component.
      Returns:
      the value of the color record component
    • radius

      public int radius()
      Returns the value of the radius record component.
      Returns:
      the value of the radius record component
    • radius2

      public int radius2()
      Returns the value of the radius2 record component.
      Returns:
      the value of the radius2 record component
    • position

      @Nonnull public CompletableFuture<Vector2i> position()
      Returns the value of the position record component.
      Returns:
      the value of the position record component