Class PVector2I.Builder<T>
java.lang.Object
com.io7m.jtensors.core.parameterized.vectors.PVector2I.Builder<T>
-
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds a newPVector2I.final PVector2I.Builder<T> from(PVector2IType<T> instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVector2ITypeinstance.final PVector2I.Builder<T> from(PVectorReadable2IType<T> instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVectorReadable2ITypeinstance.final PVector2I.Builder<T> from(VectorReadable2IType instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2ITypeinstance.final PVector2I.Builder<T> setX(int x) Initializes the value for thexattribute.final PVector2I.Builder<T> setY(int y) Initializes the value for theyattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVector2ITypeinstance.- 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.VectorReadable2ITypeinstance.- 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.PVectorReadable2ITypeinstance.- 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 newPVector2I.- Returns:
- An immutable instance of PVector2I
- Throws:
IllegalStateException- if any required attributes are missing
-