Record Class IsoCell.StencilArea

java.lang.Object
java.lang.Record
zombie.iso.IsoCell.StencilArea
Enclosing class:
IsoCell

public static record IsoCell.StencilArea(int stencilX1, int stencilY1, int stencilX2, int stencilY2, int x, int y, int texWidth, int texHeight, int offX, int offY) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    StencilArea(int stencilX1, int stencilY1, int stencilX2, int stencilY2, int x, int y, int texWidth, int texHeight, int offX, int offY)
    Creates an instance of a StencilArea 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 offX record component.
    int
    Returns the value of the offY record component.
    int
    Returns the value of the stencilX1 record component.
    int
    Returns the value of the stencilX2 record component.
    int
    Returns the value of the stencilY1 record component.
    int
    Returns the value of the stencilY2 record component.
    int
    Returns the value of the texHeight record component.
    int
    Returns the value of the texWidth 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.

    Methods inherited from class Object

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

    • StencilArea

      public StencilArea(int stencilX1, int stencilY1, int stencilX2, int stencilY2, int x, int y, int texWidth, int texHeight, int offX, int offY)
      Creates an instance of a StencilArea record class.
      Parameters:
      stencilX1 - the value for the stencilX1 record component
      stencilY1 - the value for the stencilY1 record component
      stencilX2 - the value for the stencilX2 record component
      stencilY2 - the value for the stencilY2 record component
      x - the value for the x record component
      y - the value for the y record component
      texWidth - the value for the texWidth record component
      texHeight - the value for the texHeight record component
      offX - the value for the offX record component
      offY - the value for the offY 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 the compare method from their corresponding wrapper classes.
      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.
    • stencilX1

      public int stencilX1()
      Returns the value of the stencilX1 record component.
      Returns:
      the value of the stencilX1 record component
    • stencilY1

      public int stencilY1()
      Returns the value of the stencilY1 record component.
      Returns:
      the value of the stencilY1 record component
    • stencilX2

      public int stencilX2()
      Returns the value of the stencilX2 record component.
      Returns:
      the value of the stencilX2 record component
    • stencilY2

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

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

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

      public int texWidth()
      Returns the value of the texWidth record component.
      Returns:
      the value of the texWidth record component
    • texHeight

      public int texHeight()
      Returns the value of the texHeight record component.
      Returns:
      the value of the texHeight record component
    • offX

      public int offX()
      Returns the value of the offX record component.
      Returns:
      the value of the offX record component
    • offY

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