Package com.spotify.github.v3.prs
Class ImmutableReviewParameters.Builder
- java.lang.Object
-
- com.spotify.github.v3.prs.ImmutableReviewParameters.Builder
-
- Enclosing class:
- ImmutableReviewParameters
@NotThreadSafe public static final class ImmutableReviewParameters.Builder extends Object
Builds instances of typeImmutableReviewParameters. 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
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder from(ReviewParameters instance)
Fill a builder with attribute values from the providedReviewParametersinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values. Collection elements and entries will be added, not replaced.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
commitId
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder commitId(String commitId)
Initializes the optional valuecommitIdto commitId.- Parameters:
commitId- The value for commitId- Returns:
thisbuilder for chained invocation
-
commitId
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder commitId(Optional<String> commitId)
Initializes the optional valuecommitIdto commitId.- Parameters:
commitId- The value for commitId- Returns:
thisbuilder for use in a chained invocation
-
body
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder body(String body)
Initializes the optional valuebodyto body.- Parameters:
body- The value for body- Returns:
thisbuilder for chained invocation
-
body
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder body(Optional<String> body)
Initializes the optional valuebodyto body.- Parameters:
body- The value for body- Returns:
thisbuilder for use in a chained invocation
-
event
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder event(String event)
Initializes the value for theeventattribute.- Parameters:
event- The value for event- Returns:
thisbuilder for use in a chained invocation
-
addComments
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder addComments(ReviewComment element)
Adds one element tocommentslist.- Parameters:
element- A comments element- Returns:
thisbuilder for use in a chained invocation
-
addComments
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder addComments(ReviewComment... elements)
Adds elements tocommentslist.- Parameters:
elements- An array of comments elements- Returns:
thisbuilder for use in a chained invocation
-
comments
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder comments(Iterable<? extends ReviewComment> elements)
Sets or replaces all elements forcommentslist.- Parameters:
elements- An iterable of comments elements- Returns:
thisbuilder for use in a chained invocation
-
addAllComments
@CanIgnoreReturnValue public final ImmutableReviewParameters.Builder addAllComments(Iterable<? extends ReviewComment> elements)
Adds elements tocommentslist.- Parameters:
elements- An iterable of comments elements- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableReviewParameters build()
Builds a newImmutableReviewParameters.- Returns:
- An immutable instance of ReviewParameters
- Throws:
IllegalStateException- if any required attributes are missing
-
-