Class AreaXSplitD<T extends AreaDType>

java.lang.Object
com.io7m.jregions.core.unparameterized.areas.AreaXSplitD<T>
Type Parameters:
T - The precise type of area
All Implemented Interfaces:
AreaXSplitDType<T>

public final class AreaXSplitD<T extends AreaDType>
extends java.lang.Object
implements AreaXSplitDType<T>
An area that has been split via the X axis.
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  AreaXSplitD.Builder<T extends AreaDType>
    Builds instances of type AreaXSplitD.
  • Method Summary

    Modifier and Type Method Description
    static <T extends AreaDType>
    AreaXSplitD.Builder<T>
    builder()
    Creates a builder for AreaXSplitD.
    static <T extends AreaDType>
    AreaXSplitD<T>
    copyOf​(AreaXSplitDType<T> instance)
    Creates an immutable copy of a AreaXSplitDType value.
    boolean equals​(java.lang.Object another)
    This instance is equal to all instances of AreaXSplitD that have equal attribute values.
    int hashCode()
    Computes a hash code from attributes: lower, upper.
    T lower()  
    static <T extends AreaDType>
    AreaXSplitD<T>
    of​(T lower, T upper)
    Construct a new immutable AreaXSplitD instance.
    java.lang.String toString()
    Prints the immutable value AreaXSplitD with attribute values.
    T upper()  
    AreaXSplitD<T> withLower​(T value)
    Copy the current immutable object by setting a value for the lower attribute.
    AreaXSplitD<T> withUpper​(T value)
    Copy the current immutable object by setting a value for the upper attribute.

    Methods inherited from class java.lang.Object

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

    • lower

      public T lower()
      Specified by:
      lower in interface AreaXSplitDType<T extends AreaDType>
      Returns:
      The lower half
    • upper

      public T upper()
      Specified by:
      upper in interface AreaXSplitDType<T extends AreaDType>
      Returns:
      The upper half
    • withLower

      public final AreaXSplitD<T> withLower​(T value)
      Copy the current immutable object by setting a value for the lower attribute. A shallow reference equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for lower
      Returns:
      A modified copy of the this object
    • withUpper

      public final AreaXSplitD<T> withUpper​(T value)
      Copy the current immutable object by setting a value for the upper attribute. A shallow reference equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for upper
      Returns:
      A modified copy of the this object
    • equals

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

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

      public static <T extends AreaDType> AreaXSplitD<T> of​(T lower, T upper)
      Construct a new immutable AreaXSplitD instance.
      Type Parameters:
      T - generic parameter T
      Parameters:
      lower - The value for the lower attribute
      upper - The value for the upper attribute
      Returns:
      An immutable AreaXSplitD instance
    • copyOf

      public static <T extends AreaDType> AreaXSplitD<T> copyOf​(AreaXSplitDType<T> instance)
      Creates an immutable copy of a AreaXSplitDType 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:
      T - generic parameter T
      Parameters:
      instance - The instance to copy
      Returns:
      A copied immutable AreaXSplitD instance
    • builder

      public static <T extends AreaDType> AreaXSplitD.Builder<T> builder()
      Creates a builder for AreaXSplitD.
       AreaXSplitD.&lt;T&gt;builder()
          .setLower(T) // required lower
          .setUpper(T) // required upper
          .build();
       
      Type Parameters:
      T - generic parameter T
      Returns:
      A new AreaXSplitD builder