Class Vector2D.Builder
java.lang.Object
com.io7m.jtensors.core.unparameterized.vectors.Vector2D.Builder
- Enclosing class:
- Vector2D
public static final class Vector2D.Builder
extends java.lang.Object
-
Method Summary
Modifier and Type Method Description Vector2Dbuild()Builds a newVector2D.Vector2D.Builderfrom(Vector2DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.Vector2DTypeinstance.Vector2D.Builderfrom(VectorReadable2DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2DTypeinstance.Vector2D.BuildersetX(double x)Initializes the value for thexattribute.Vector2D.BuildersetY(double y)Initializes the value for theyattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.Vector2DTypeinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2DTypeinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setX
Initializes the value for thexattribute.- Parameters:
x- The value for x- Returns:
thisbuilder for use in a chained invocation
-
setY
Initializes the value for theyattribute.- Parameters:
y- The value for y- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newVector2D.- Returns:
- An immutable instance of Vector2D
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-