Package com.spotify.github
Class ImmutableCloseTracking.Builder
- java.lang.Object
-
- com.spotify.github.ImmutableCloseTracking.Builder
-
- Enclosing class:
- ImmutableCloseTracking
@NotThreadSafe public static final class ImmutableCloseTracking.Builder extends Object
Builds instances of typeImmutableCloseTracking. 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 ImmutableCloseTrackingbuild()Builds a newImmutableCloseTracking.ImmutableCloseTracking.BuilderclosedAt(GitHubInstant closedAt)Initializes the optional valueclosedAtto closedAt.ImmutableCloseTracking.BuilderclosedAt(Optional<? extends GitHubInstant> closedAt)Initializes the optional valueclosedAtto closedAt.ImmutableCloseTracking.BuildercreatedAt(GitHubInstant createdAt)Initializes the value for thecreatedAtattribute.ImmutableCloseTracking.Builderfrom(CloseTracking instance)Fill a builder with attribute values from the providedcom.spotify.github.CloseTrackinginstance.ImmutableCloseTracking.Builderfrom(UpdateTracking instance)Fill a builder with attribute values from the providedcom.spotify.github.UpdateTrackinginstance.ImmutableCloseTracking.BuilderupdatedAt(GitHubInstant updatedAt)Initializes the value for theupdatedAtattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableCloseTracking.Builder from(CloseTracking instance)
Fill a builder with attribute values from the providedcom.spotify.github.CloseTrackinginstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
@CanIgnoreReturnValue public final ImmutableCloseTracking.Builder from(UpdateTracking instance)
Fill a builder with attribute values from the providedcom.spotify.github.UpdateTrackinginstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
createdAt
@CanIgnoreReturnValue public final ImmutableCloseTracking.Builder createdAt(@Nullable GitHubInstant createdAt)
Initializes the value for thecreatedAtattribute.- Parameters:
createdAt- The value for createdAt (can benull)- Returns:
thisbuilder for use in a chained invocation
-
updatedAt
@CanIgnoreReturnValue public final ImmutableCloseTracking.Builder updatedAt(@Nullable GitHubInstant updatedAt)
Initializes the value for theupdatedAtattribute.- Parameters:
updatedAt- The value for updatedAt (can benull)- Returns:
thisbuilder for use in a chained invocation
-
closedAt
@CanIgnoreReturnValue public final ImmutableCloseTracking.Builder closedAt(GitHubInstant closedAt)
Initializes the optional valueclosedAtto closedAt.- Parameters:
closedAt- The value for closedAt- Returns:
thisbuilder for chained invocation
-
closedAt
@CanIgnoreReturnValue public final ImmutableCloseTracking.Builder closedAt(Optional<? extends GitHubInstant> closedAt)
Initializes the optional valueclosedAtto closedAt.- Parameters:
closedAt- The value for closedAt- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableCloseTracking build()
Builds a newImmutableCloseTracking.- Returns:
- An immutable instance of CloseTracking
- Throws:
IllegalStateException- if any required attributes are missing
-
-