Record Class CreateMapPagesProcessor.PagingDimensions

java.lang.Object
java.lang.Record
org.mapfish.print.processor.map.CreateMapPagesProcessor.PagingDimensions
Enclosing class:
CreateMapPagesProcessor

public static record CreateMapPagesProcessor.PagingDimensions(int nbWidth, int nbHeight, double minX, double minY, double paintAreaWidth, double paintAreaHeight, double overlapProj) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    PagingDimensions(int nbWidth, int nbHeight, double minX, double minY, double paintAreaWidth, double paintAreaHeight, double overlapProj)
    Creates an instance of a PagingDimensions 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
    Returns the value of the minX record component.
    double
    Returns the value of the minY record component.
    int
    Returns the value of the nbHeight record component.
    int
    Returns the value of the nbWidth record component.
    double
    Returns the value of the overlapProj record component.
    double
    Returns the value of the paintAreaHeight record component.
    double
    Returns the value of the paintAreaWidth record component.
    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
  • Constructor Details

    • PagingDimensions

      public PagingDimensions(int nbWidth, int nbHeight, double minX, double minY, double paintAreaWidth, double paintAreaHeight, double overlapProj)
      Creates an instance of a PagingDimensions record class.
      Parameters:
      nbWidth - the value for the nbWidth record component
      nbHeight - the value for the nbHeight record component
      minX - the value for the minX record component
      minY - the value for the minY record component
      paintAreaWidth - the value for the paintAreaWidth record component
      paintAreaHeight - the value for the paintAreaHeight record component
      overlapProj - the value for the overlapProj 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.
    • nbWidth

      public int nbWidth()
      Returns the value of the nbWidth record component.
      Returns:
      the value of the nbWidth record component
    • nbHeight

      public int nbHeight()
      Returns the value of the nbHeight record component.
      Returns:
      the value of the nbHeight record component
    • 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
    • paintAreaWidth

      public double paintAreaWidth()
      Returns the value of the paintAreaWidth record component.
      Returns:
      the value of the paintAreaWidth record component
    • paintAreaHeight

      public double paintAreaHeight()
      Returns the value of the paintAreaHeight record component.
      Returns:
      the value of the paintAreaHeight record component
    • overlapProj

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