Record Class AABB

java.lang.Object
java.lang.Record
org.jhotdraw8.geom.AABB
Record Components:
minX - the minimal x value
minY - the minimal y value
maxX - the maximal x value
maxY - the maximal y value

public record AABB(double minX, double minY, double maxX, double maxY) extends Record
Axis aligned bounding box (AABB).
  • Constructor Summary

    Constructors
    Constructor
    Description
    AABB(double minX, double minY, double maxX, double maxY)
    Creates an instance of a AABB 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.
    double
     
    double
    Returns the value of the maxX record component.
    double
    Returns the value of the maxY record component.
    double
    Returns the value of the minX record component.
    double
    Returns the value of the minY record component.
    final String
    Returns a string representation of this record class.
    double
     

    Methods inherited from class java.lang.Object

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

    • AABB

      public AABB(double minX, double minY, double maxX, double maxY)
      Creates an instance of a AABB record class.
      Parameters:
      minX - the value for the minX record component
      minY - the value for the minY record component
      maxX - the value for the maxX record component
      maxY - the value for the maxY record component
  • Method Details

    • width

      public double width()
    • height

      public double height()
    • 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 double minX()
      Returns the value of the minX record component.
      Returns:
      the value of the minX record component
    • minY

      public double minY()
      Returns the value of the minY record component.
      Returns:
      the value of the minY record component
    • maxX

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

      public double maxY()
      Returns the value of the maxY record component.
      Returns:
      the value of the maxY record component