Package com.spotify.github.v3.prs
Class ImmutableReviewComment.Builder
- java.lang.Object
-
- com.spotify.github.v3.prs.ImmutableReviewComment.Builder
-
- Enclosing class:
- ImmutableReviewComment
@NotThreadSafe public static final class ImmutableReviewComment.Builder extends Object
Builds instances of typeImmutableReviewComment. 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 ImmutableReviewComment.Builderbody(String body)Initializes the value for thebodyattribute.ImmutableReviewCommentbuild()Builds a newImmutableReviewComment.ImmutableReviewComment.Builderfrom(ReviewComment instance)Fill a builder with attribute values from the providedReviewCommentinstance.ImmutableReviewComment.Builderpath(String path)Initializes the value for thepathattribute.ImmutableReviewComment.Builderposition(int position)Initializes the value for thepositionattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableReviewComment.Builder from(ReviewComment instance)
Fill a builder with attribute values from the providedReviewCommentinstance. 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
-
path
@CanIgnoreReturnValue public final ImmutableReviewComment.Builder path(String path)
Initializes the value for thepathattribute.- Parameters:
path- The value for path- Returns:
thisbuilder for use in a chained invocation
-
position
@CanIgnoreReturnValue public final ImmutableReviewComment.Builder position(int position)
Initializes the value for thepositionattribute.- Parameters:
position- The value for position- Returns:
thisbuilder for use in a chained invocation
-
body
@CanIgnoreReturnValue public final ImmutableReviewComment.Builder body(String body)
Initializes the value for thebodyattribute.- Parameters:
body- The value for body- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableReviewComment build()
Builds a newImmutableReviewComment.- Returns:
- An immutable instance of ReviewComment
- Throws:
IllegalStateException- if any required attributes are missing
-
-