java.lang.Object
com.io7m.jregions.core.unparameterized.volumes.VolumeL
All Implemented Interfaces:
VolumeSizeValuesLType, VolumeLType, VolumeValuesLType

public final class VolumeL extends Object implements VolumeLType

A volume with long coordinates.

The coordinates of the area are given in half-closed form. That is, minimumX() refers to the minimum inclusive value on the X axis, and maximumX() refers to the maximum exclusive value on the X axis. Likewise for the Y and Z axes.

  • Method Details

    • minimumX

      public long minimumX()
      Specified by:
      minimumX in interface VolumeLType
      Specified by:
      minimumX in interface VolumeValuesLType
      Returns:
      The value of the minimumX attribute
    • maximumX

      public long maximumX()
      Specified by:
      maximumX in interface VolumeLType
      Specified by:
      maximumX in interface VolumeValuesLType
      Returns:
      The value of the maximumX attribute
    • minimumY

      public long minimumY()
      Specified by:
      minimumY in interface VolumeLType
      Specified by:
      minimumY in interface VolumeValuesLType
      Returns:
      The value of the minimumY attribute
    • maximumY

      public long maximumY()
      Specified by:
      maximumY in interface VolumeLType
      Specified by:
      maximumY in interface VolumeValuesLType
      Returns:
      The value of the maximumY attribute
    • minimumZ

      public long minimumZ()
      Specified by:
      minimumZ in interface VolumeLType
      Specified by:
      minimumZ in interface VolumeValuesLType
      Returns:
      The value of the minimumZ attribute
    • maximumZ

      public long maximumZ()
      Specified by:
      maximumZ in interface VolumeLType
      Specified by:
      maximumZ in interface VolumeValuesLType
      Returns:
      The value of the maximumZ attribute
    • withMinimumX

      public final VolumeL withMinimumX(long value)
      Copy the current immutable object by setting a value for the minimumX attribute. A value equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for minimumX
      Returns:
      A modified copy of the this object
    • withMaximumX

      public final VolumeL withMaximumX(long value)
      Copy the current immutable object by setting a value for the maximumX attribute. A value equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for maximumX
      Returns:
      A modified copy of the this object
    • withMinimumY

      public final VolumeL withMinimumY(long value)
      Copy the current immutable object by setting a value for the minimumY attribute. A value equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for minimumY
      Returns:
      A modified copy of the this object
    • withMaximumY

      public final VolumeL withMaximumY(long value)
      Copy the current immutable object by setting a value for the maximumY attribute. A value equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for maximumY
      Returns:
      A modified copy of the this object
    • withMinimumZ

      public final VolumeL withMinimumZ(long value)
      Copy the current immutable object by setting a value for the minimumZ attribute. A value equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for minimumZ
      Returns:
      A modified copy of the this object
    • withMaximumZ

      public final VolumeL withMaximumZ(long value)
      Copy the current immutable object by setting a value for the maximumZ attribute. A value equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for maximumZ
      Returns:
      A modified copy of the this object
    • equals

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

      public int hashCode()
      Computes a hash code from attributes: minimumX, maximumX, minimumY, maximumY, minimumZ, maximumZ.
      Overrides:
      hashCode in class Object
      Returns:
      hashCode value
    • toString

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

      public static VolumeL of(long minimumX, long maximumX, long minimumY, long maximumY, long minimumZ, long maximumZ)
      Construct a new immutable VolumeL instance.
      Parameters:
      minimumX - The value for the minimumX attribute
      maximumX - The value for the maximumX attribute
      minimumY - The value for the minimumY attribute
      maximumY - The value for the maximumY attribute
      minimumZ - The value for the minimumZ attribute
      maximumZ - The value for the maximumZ attribute
      Returns:
      An immutable VolumeL instance
    • copyOf

      public static VolumeL copyOf(VolumeLType instance)
      Creates an immutable copy of a VolumeLType 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 VolumeL instance
    • builder

      public static VolumeL.Builder builder()
      Creates a builder for VolumeL.
       VolumeL.builder()
          .setMinimumX(long) // required minimumX
          .setMaximumX(long) // required maximumX
          .setMinimumY(long) // required minimumY
          .setMaximumY(long) // required maximumY
          .setMinimumZ(long) // required minimumZ
          .setMaximumZ(long) // required maximumZ
          .build();
       
      Returns:
      A new VolumeL builder