Package pl.poznan.put.circular.samples
Class ImmutableAngleSample.Builder
java.lang.Object
pl.poznan.put.circular.samples.ImmutableAngleSample.Builder
- Enclosing class:
- ImmutableAngleSample
Builds instances of type
ImmutableAngleSample
.
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 TypeMethodDescriptionbuild()
Builds a newImmutableAngleSample
.data
(Collection<Angle> data) Initializes the value for thedata
attribute.from
(AngleSample instance) Fill a builder with attribute values from the providedAngleSample
instance.
-
Method Details
-
from
Fill a builder with attribute values from the providedAngleSample
instance. 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:
this
builder for use in a chained invocation
-
data
Initializes the value for thedata
attribute.- Parameters:
data
- The value for data- Returns:
this
builder for use in a chained invocation
-
build
Builds a newImmutableAngleSample
.- Returns:
- An immutable instance of AngleSample
- Throws:
IllegalStateException
- if any required attributes are missing
-