Class Matrix2x2D.Builder

java.lang.Object
com.io7m.jtensors.core.unparameterized.matrices.Matrix2x2D.Builder
Enclosing class:
Matrix2x2D

public static final class Matrix2x2D.Builder
extends java.lang.Object
Builds instances of type Matrix2x2D. Initialize attributes and then invoke the build() method to create an immutable instance.

Builder is not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.

  • Method Details

    • from

      public final Matrix2x2D.Builder from​(MatrixReadable2x2DType instance)
      Fill a builder with attribute values from the provided com.io7m.jtensors.core.unparameterized.matrices.MatrixReadable2x2DType instance.
      Parameters:
      instance - The instance from which to copy values
      Returns:
      this builder for use in a chained invocation
    • from

      public final Matrix2x2D.Builder from​(Matrix2x2DType instance)
      Fill a builder with attribute values from the provided com.io7m.jtensors.core.unparameterized.matrices.Matrix2x2DType instance.
      Parameters:
      instance - The instance from which to copy values
      Returns:
      this builder for use in a chained invocation
    • setR0c0

      public final Matrix2x2D.Builder setR0c0​(double r0c0)
      Initializes the value for the r0c0 attribute.
      Parameters:
      r0c0 - The value for r0c0
      Returns:
      this builder for use in a chained invocation
    • setR0c1

      public final Matrix2x2D.Builder setR0c1​(double r0c1)
      Initializes the value for the r0c1 attribute.
      Parameters:
      r0c1 - The value for r0c1
      Returns:
      this builder for use in a chained invocation
    • setR1c0

      public final Matrix2x2D.Builder setR1c0​(double r1c0)
      Initializes the value for the r1c0 attribute.
      Parameters:
      r1c0 - The value for r1c0
      Returns:
      this builder for use in a chained invocation
    • setR1c1

      public final Matrix2x2D.Builder setR1c1​(double r1c1)
      Initializes the value for the r1c1 attribute.
      Parameters:
      r1c1 - The value for r1c1
      Returns:
      this builder for use in a chained invocation
    • build

      public Matrix2x2D build()
      Builds a new Matrix2x2D.
      Returns:
      An immutable instance of Matrix2x2D
      Throws:
      java.lang.IllegalStateException - if any required attributes are missing