Class PVector4D.Builder<T>
java.lang.Object
com.io7m.jtensors.core.parameterized.vectors.PVector4D.Builder<T>
public static final class PVector4D.Builder<T>
extends java.lang.Object
-
Method Summary
Modifier and Type Method Description PVector4D<T>build()Builds a newPVector4D.PVector4D.Builder<T>from(PVector4DType<T> instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVector4DTypeinstance.PVector4D.Builder<T>from(VectorReadable2DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2DTypeinstance.PVector4D.Builder<T>from(VectorReadable3DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable3DTypeinstance.PVector4D.Builder<T>from(VectorReadable4DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable4DTypeinstance.PVector4D.Builder<T>setW(double w)Initializes the value for thewattribute.PVector4D.Builder<T>setX(double x)Initializes the value for thexattribute.PVector4D.Builder<T>setY(double y)Initializes the value for theyattribute.PVector4D.Builder<T>setZ(double z)Initializes the value for thezattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable3DTypeinstance.- 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.PVector4DTypeinstance.- 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
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable4DTypeinstance.- 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
-
setZ
Initializes the value for thezattribute.- Parameters:
z- The value for z- Returns:
thisbuilder for use in a chained invocation
-
setW
Initializes the value for thewattribute.- Parameters:
w- The value for w- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newPVector4D.- Returns:
- An immutable instance of PVector4D
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-