Uses of Interface
com.spotify.github.v3.prs.PullRequest
-
Packages that use PullRequest Package Description com.spotify.github.v3.activity.events com.spotify.github.v3.clients com.spotify.github.v3.prs -
-
Uses of PullRequest in com.spotify.github.v3.activity.events
Methods in com.spotify.github.v3.activity.events that return PullRequest Modifier and Type Method Description PullRequest
ImmutablePullRequestEvent. pullRequest()
The pull requestPullRequest
PullRequestEvent. pullRequest()
The pull requestMethods in com.spotify.github.v3.activity.events with parameters of type PullRequest Modifier and Type Method Description ImmutablePullRequestEvent.Builder
ImmutablePullRequestEvent.Builder. pullRequest(PullRequest pullRequest)
Initializes the value for thepullRequest
attribute.ImmutablePullRequestEvent
ImmutablePullRequestEvent. withPullRequest(PullRequest value)
Copy the current immutable object by setting a value for thepullRequest
attribute. -
Uses of PullRequest in com.spotify.github.v3.clients
Methods in com.spotify.github.v3.clients that return types with arguments of type PullRequest Modifier and Type Method Description CompletableFuture<PullRequest>
PullRequestClient. create(PullRequestCreate request)
Create a pull request.CompletableFuture<PullRequest>
PullRequestClient. get(int number)
Get a specific pull request.CompletableFuture<PullRequest>
PullRequestClient. requestReview(int number, RequestReviewParameters properties)
Requests a review for a pull request.CompletableFuture<PullRequest>
PullRequestClient. update(int number, PullRequestUpdate request)
Update given pull request. -
Uses of PullRequest in com.spotify.github.v3.prs
Classes in com.spotify.github.v3.prs that implement PullRequest Modifier and Type Class Description class
ImmutablePullRequest
Immutable implementation ofPullRequest
.Methods in com.spotify.github.v3.prs with parameters of type PullRequest Modifier and Type Method Description static ImmutablePullRequest
ImmutablePullRequest. copyOf(PullRequest instance)
Creates an immutable copy of aPullRequest
value.ImmutablePullRequest.Builder
ImmutablePullRequest.Builder. from(PullRequest instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.prs.PullRequest
instance.
-