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 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 Details

    • from

      public final ImmutableAngleSample.Builder from(AngleSample instance)
      Fill a builder with attribute values from the provided AngleSample 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

      public final ImmutableAngleSample.Builder data(Collection<Angle> data)
      Initializes the value for the data attribute.
      Parameters:
      data - The value for data
      Returns:
      this builder for use in a chained invocation
    • build

      public ImmutableAngleSample build()
      Builds a new ImmutableAngleSample.
      Returns:
      An immutable instance of AngleSample
      Throws:
      IllegalStateException - if any required attributes are missing