Class Orthonormalized4D.Builder
java.lang.Object
com.io7m.jtensors.orthonormalization.Orthonormalized4D.Builder
- Enclosing class:
- Orthonormalized4D
public static final class Orthonormalized4D.Builder
extends java.lang.Object
Builds instances of type
Orthonormalized4D.
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 Orthonormalized4Dbuild()Builds a newOrthonormalized4D.Orthonormalized4D.Builderfrom(Orthonormalized4DType instance)Fill a builder with attribute values from the providedOrthonormalized4DTypeinstance.Orthonormalized4D.BuildersetV0(Vector4D v0)Initializes the value for thev0attribute.Orthonormalized4D.BuildersetV1(Vector4D v1)Initializes the value for thev1attribute.Orthonormalized4D.BuildersetV2(Vector4D v2)Initializes the value for thev2attribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedOrthonormalized4DTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setV0
Initializes the value for thev0attribute.- Parameters:
v0- The value for v0- Returns:
thisbuilder for use in a chained invocation
-
setV1
Initializes the value for thev1attribute.- Parameters:
v1- The value for v1- Returns:
thisbuilder for use in a chained invocation
-
setV2
Initializes the value for thev2attribute.- Parameters:
v2- The value for v2- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newOrthonormalized4D.- Returns:
- An immutable instance of Orthonormalized4D
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-