Class PVector2L.Builder<T>
java.lang.Object
com.io7m.jtensors.core.parameterized.vectors.PVector2L.Builder<T>
public static final class PVector2L.Builder<T>
extends java.lang.Object
-
Method Summary
Modifier and Type Method Description PVector2L<T>build()Builds a newPVector2L.PVector2L.Builder<T>from(PVector2LType<T> instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVector2LTypeinstance.PVector2L.Builder<T>from(VectorReadable2LType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2LTypeinstance.PVector2L.Builder<T>setX(long x)Initializes the value for thexattribute.PVector2L.Builder<T>setY(long y)Initializes the value for theyattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2LTypeinstance.- 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.parameterized.vectors.PVector2LTypeinstance.- 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 newPVector2L.- Returns:
- An immutable instance of PVector2L
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-