Class PAreaSizeBD<S>

java.lang.Object
com.io7m.jregions.core.parameterized.sizes.PAreaSizeBD<S>
Type Parameters:
S - A phantom type parameter indicating the coordinate space of the area
All Implemented Interfaces:
PAreaSizeBDType<S>, AreaSizeValuesBDType

public final class PAreaSizeBD<S>
extends java.lang.Object
implements PAreaSizeBDType<S>
The size of an area with BigDecimal coordinates.
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  PAreaSizeBD.Builder<S>
    Builds instances of type PAreaSizeBD.
  • Method Summary

    Modifier and Type Method Description
    static <S> PAreaSizeBD.Builder<S> builder()
    Creates a builder for PAreaSizeBD.
    static <S> PAreaSizeBD<S> copyOf​(PAreaSizeBDType<S> instance)
    Creates an immutable copy of a PAreaSizeBDType value.
    boolean equals​(java.lang.Object another)
    This instance is equal to all instances of PAreaSizeBD that have equal attribute values.
    int hashCode()
    Computes a hash code from attributes: sizeX, sizeY.
    java.math.BigDecimal height()
    Deprecated.
    static <S> PAreaSizeBD<S> of​(java.math.BigDecimal sizeX, java.math.BigDecimal sizeY)
    Construct a new immutable PAreaSizeBD instance.
    java.math.BigDecimal sizeX()  
    java.math.BigDecimal sizeY()  
    java.lang.String toString()
    Prints the immutable value PAreaSizeBD with attribute values.
    java.math.BigDecimal width()
    Deprecated.
    PAreaSizeBD<S> withSizeX​(java.math.BigDecimal value)
    Copy the current immutable object by setting a value for the sizeX attribute.
    PAreaSizeBD<S> withSizeY​(java.math.BigDecimal 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.parameterized.sizes.PAreaSizeBDType

    checkPreconditions
  • Method Details

    • width

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

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

      public java.math.BigDecimal sizeX()
      Specified by:
      sizeX in interface AreaSizeValuesBDType
      Specified by:
      sizeX in interface PAreaSizeBDType<S>
      Returns:
      The value of the sizeX attribute
    • sizeY

      public java.math.BigDecimal sizeY()
      Specified by:
      sizeY in interface AreaSizeValuesBDType
      Specified by:
      sizeY in interface PAreaSizeBDType<S>
      Returns:
      The value of the sizeY attribute
    • withSizeX

      public final PAreaSizeBD<S> withSizeX​(java.math.BigDecimal 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 PAreaSizeBD<S> withSizeY​(java.math.BigDecimal 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 PAreaSizeBD 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 PAreaSizeBD with attribute values.
      Overrides:
      toString in class java.lang.Object
      Returns:
      A string representation of the value
    • of

      public static <S> PAreaSizeBD<S> of​(java.math.BigDecimal sizeX, java.math.BigDecimal sizeY)
      Construct a new immutable PAreaSizeBD instance.
      Type Parameters:
      S - generic parameter S
      Parameters:
      sizeX - The value for the sizeX attribute
      sizeY - The value for the sizeY attribute
      Returns:
      An immutable PAreaSizeBD instance
    • copyOf

      public static <S> PAreaSizeBD<S> copyOf​(PAreaSizeBDType<S> instance)
      Creates an immutable copy of a PAreaSizeBDType value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
      Type Parameters:
      S - generic parameter S
      Parameters:
      instance - The instance to copy
      Returns:
      A copied immutable PAreaSizeBD instance
    • builder

      public static <S> PAreaSizeBD.Builder<S> builder()
      Creates a builder for PAreaSizeBD.
       PAreaSizeBD.&lt;S&gt;builder()
          .setSizeX(java.math.BigDecimal) // required sizeX
          .setSizeY(java.math.BigDecimal) // required sizeY
          .build();
       
      Type Parameters:
      S - generic parameter S
      Returns:
      A new PAreaSizeBD builder