Package pl.poznan.put.circular.samples
Class ImmutableAngleSample.Builder
- java.lang.Object
-
- pl.poznan.put.circular.samples.ImmutableAngleSample.Builder
-
- Enclosing class:
- ImmutableAngleSample
@NotThreadSafe public static final class ImmutableAngleSample.Builder extends Object
Builds instances of typeImmutableAngleSample. Initialize attributes and then invoke thebuild()method to create an immutable instance.Builderis not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableAngleSamplebuild()Builds a newImmutableAngleSample.ImmutableAngleSample.Builderdata(Collection<Angle> data)Initializes the value for thedataattribute.ImmutableAngleSample.Builderfrom(AngleSample instance)Fill a builder with attribute values from the providedAngleSampleinstance.
-
-
-
Method Detail
-
from
public final ImmutableAngleSample.Builder from(AngleSample instance)
Fill a builder with attribute values from the providedAngleSampleinstance. 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
-
data
public final ImmutableAngleSample.Builder data(Collection<Angle> data)
Initializes the value for thedataattribute.- Parameters:
data- The value for data- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableAngleSample build()
Builds a newImmutableAngleSample.- Returns:
- An immutable instance of AngleSample
- Throws:
IllegalStateException- if any required attributes are missing
-
-