Class PVolumeSizeBI<S>

java.lang.Object
com.io7m.jregions.core.parameterized.sizes.PVolumeSizeBI<S>
Type Parameters:
S - A phantom type parameter indicating the coordinate space of the volume
All Implemented Interfaces:
PVolumeSizeBIType<S>, VolumeSizeValuesBIType

public final class PVolumeSizeBI<S>
extends java.lang.Object
implements PVolumeSizeBIType<S>
The size of a volume with BigInteger coordinates.
  • Nested Class Summary

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

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

    Methods inherited from class java.lang.Object

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

    • sizeX

      public java.math.BigInteger sizeX()
      Specified by:
      sizeX in interface PVolumeSizeBIType<S>
      Specified by:
      sizeX in interface VolumeSizeValuesBIType
      Returns:
      The value of the sizeX attribute
    • sizeY

      public java.math.BigInteger sizeY()
      Specified by:
      sizeY in interface PVolumeSizeBIType<S>
      Specified by:
      sizeY in interface VolumeSizeValuesBIType
      Returns:
      The value of the sizeY attribute
    • sizeZ

      public java.math.BigInteger sizeZ()
      Specified by:
      sizeZ in interface PVolumeSizeBIType<S>
      Specified by:
      sizeZ in interface VolumeSizeValuesBIType
      Returns:
      The value of the sizeZ attribute
    • withSizeX

      public final PVolumeSizeBI<S> 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 PVolumeSizeBI<S> 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
    • withSizeZ

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

      public boolean equals​(java.lang.Object another)
      This instance is equal to all instances of PVolumeSizeBI 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, sizeZ.
      Overrides:
      hashCode in class java.lang.Object
      Returns:
      hashCode value
    • toString

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

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

      public static <S> PVolumeSizeBI<S> copyOf​(PVolumeSizeBIType<S> instance)
      Creates an immutable copy of a PVolumeSizeBIType 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 PVolumeSizeBI instance
    • builder

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