Class Vector2F.Builder

java.lang.Object
com.io7m.jtensors.core.unparameterized.vectors.Vector2F.Builder
Enclosing class:
Vector2F

public static final class Vector2F.Builder
extends java.lang.Object
Builds instances of type Vector2F. 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 Summary

    Modifier and Type Method Description
    Vector2F build()
    Builds a new Vector2F.
    Vector2F.Builder from​(Vector2FType instance)
    Fill a builder with attribute values from the provided com.io7m.jtensors.core.unparameterized.vectors.Vector2FType instance.
    Vector2F.Builder from​(VectorReadable2FType instance)
    Fill a builder with attribute values from the provided com.io7m.jtensors.core.unparameterized.vectors.VectorReadable2FType instance.
    Vector2F.Builder setX​(float x)
    Initializes the value for the x attribute.
    Vector2F.Builder setY​(float y)
    Initializes the value for the y attribute.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • from

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

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

      public final Vector2F.Builder setX​(float x)
      Initializes the value for the x attribute.
      Parameters:
      x - The value for x
      Returns:
      this builder for use in a chained invocation
    • setY

      public final Vector2F.Builder setY​(float y)
      Initializes the value for the y attribute.
      Parameters:
      y - The value for y
      Returns:
      this builder for use in a chained invocation
    • build

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