java.lang.Object
com.io7m.jregions.core.unparameterized.sizes.AreaSizeBI
All Implemented Interfaces:
AreaSizeBIType, AreaSizeValuesBIType

public final class AreaSizeBI
extends java.lang.Object
implements AreaSizeBIType
The size of an area with BigInteger coordinates.
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  AreaSizeBI.Builder
    Builds instances of type AreaSizeBI.
  • Method Summary

    Modifier and Type Method Description
    static AreaSizeBI.Builder builder()
    Creates a builder for AreaSizeBI.
    static AreaSizeBI copyOf​(AreaSizeBIType instance)
    Creates an immutable copy of a AreaSizeBIType value.
    boolean equals​(java.lang.Object another)
    This instance is equal to all instances of AreaSizeBI that have equal attribute values.
    int hashCode()
    Computes a hash code from attributes: sizeX, sizeY.
    java.math.BigInteger height()
    Deprecated.
    static AreaSizeBI of​(java.math.BigInteger sizeX, java.math.BigInteger sizeY)
    Construct a new immutable AreaSizeBI instance.
    java.math.BigInteger sizeX()  
    java.math.BigInteger sizeY()  
    java.lang.String toString()
    Prints the immutable value AreaSizeBI with attribute values.
    java.math.BigInteger width()
    Deprecated.
    AreaSizeBI withSizeX​(java.math.BigInteger value)
    Copy the current immutable object by setting a value for the sizeX attribute.
    AreaSizeBI withSizeY​(java.math.BigInteger value)
    Copy the current immutable object by setting a value for the sizeY attribute.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface com.io7m.jregions.core.unparameterized.sizes.AreaSizeBIType

    checkPreconditions
  • Method Details

    • width

      @Deprecated public java.math.BigInteger width()
      Deprecated.
      Specified by:
      width in interface AreaSizeValuesBIType
      Returns:
      The width of the area
    • height

      @Deprecated public java.math.BigInteger height()
      Deprecated.
      Specified by:
      height in interface AreaSizeValuesBIType
      Returns:
      The height of the area
    • sizeX

      public java.math.BigInteger sizeX()
      Specified by:
      sizeX in interface AreaSizeBIType
      Specified by:
      sizeX in interface AreaSizeValuesBIType
      Returns:
      The value of the sizeX attribute
    • sizeY

      public java.math.BigInteger sizeY()
      Specified by:
      sizeY in interface AreaSizeBIType
      Specified by:
      sizeY in interface AreaSizeValuesBIType
      Returns:
      The value of the sizeY attribute
    • withSizeX

      public final AreaSizeBI withSizeX​(java.math.BigInteger value)
      Copy the current immutable object by setting a value for the sizeX attribute. An equals check used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for sizeX
      Returns:
      A modified copy of the this object
    • withSizeY

      public final AreaSizeBI withSizeY​(java.math.BigInteger value)
      Copy the current immutable object by setting a value for the sizeY attribute. An equals check used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for sizeY
      Returns:
      A modified copy of the this object
    • equals

      public boolean equals​(java.lang.Object another)
      This instance is equal to all instances of AreaSizeBI that have equal attribute values.
      Overrides:
      equals in class java.lang.Object
      Returns:
      true if this is equal to another instance
    • hashCode

      public int hashCode()
      Computes a hash code from attributes: sizeX, sizeY.
      Overrides:
      hashCode in class java.lang.Object
      Returns:
      hashCode value
    • toString

      public java.lang.String toString()
      Prints the immutable value AreaSizeBI with attribute values.
      Overrides:
      toString in class java.lang.Object
      Returns:
      A string representation of the value
    • of

      public static AreaSizeBI of​(java.math.BigInteger sizeX, java.math.BigInteger sizeY)
      Construct a new immutable AreaSizeBI instance.
      Parameters:
      sizeX - The value for the sizeX attribute
      sizeY - The value for the sizeY attribute
      Returns:
      An immutable AreaSizeBI instance
    • copyOf

      public static AreaSizeBI copyOf​(AreaSizeBIType instance)
      Creates an immutable copy of a AreaSizeBIType value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
      Parameters:
      instance - The instance to copy
      Returns:
      A copied immutable AreaSizeBI instance
    • builder

      public static AreaSizeBI.Builder builder()
      Creates a builder for AreaSizeBI.
       AreaSizeBI.builder()
          .setSizeX(java.math.BigInteger) // required sizeX
          .setSizeY(java.math.BigInteger) // required sizeY
          .build();
       
      Returns:
      A new AreaSizeBI builder