Uses of Interface
com.spotify.github.v3.checks.CheckRunResponse
-
Packages that use CheckRunResponse Package Description com.spotify.github.v3.activity.events com.spotify.github.v3.checks com.spotify.github.v3.clients -
-
Uses of CheckRunResponse in com.spotify.github.v3.activity.events
Methods in com.spotify.github.v3.activity.events that return CheckRunResponse Modifier and Type Method Description CheckRunResponse
CheckRunEvent. checkRun()
CheckRunResponse
ImmutableCheckRunEvent. checkRun()
Methods in com.spotify.github.v3.activity.events with parameters of type CheckRunResponse Modifier and Type Method Description ImmutableCheckRunEvent.Builder
ImmutableCheckRunEvent.Builder. checkRun(CheckRunResponse checkRun)
Initializes the value for thecheckRun
attribute.ImmutableCheckRunEvent
ImmutableCheckRunEvent. withCheckRun(CheckRunResponse value)
Copy the current immutable object by setting a value for thecheckRun
attribute. -
Uses of CheckRunResponse in com.spotify.github.v3.checks
Classes in com.spotify.github.v3.checks that implement CheckRunResponse Modifier and Type Class Description class
ImmutableCheckRunResponse
Immutable implementation ofCheckRunResponse
.Methods in com.spotify.github.v3.checks that return types with arguments of type CheckRunResponse Modifier and Type Method Description List<CheckRunResponse>
CheckRunResponseList. checkRuns()
CheckRuns list.List<CheckRunResponse>
ImmutableCheckRunResponseList. checkRuns()
CheckRuns list.Methods in com.spotify.github.v3.checks with parameters of type CheckRunResponse Modifier and Type Method Description ImmutableCheckRunResponseList.Builder
ImmutableCheckRunResponseList.Builder. addCheckRuns(CheckRunResponse element)
Adds one element tocheckRuns
list.ImmutableCheckRunResponseList.Builder
ImmutableCheckRunResponseList.Builder. addCheckRuns(CheckRunResponse... elements)
Adds elements tocheckRuns
list.static ImmutableCheckRunResponse
ImmutableCheckRunResponse. copyOf(CheckRunResponse instance)
Creates an immutable copy of aCheckRunResponse
value.ImmutableCheckRunResponse.Builder
ImmutableCheckRunResponse.Builder. from(CheckRunResponse instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.checks.CheckRunResponse
instance.ImmutableCheckRunResponseList
ImmutableCheckRunResponseList. withCheckRuns(CheckRunResponse... elements)
Copy the current immutable object with elements that replace the content ofcheckRuns
.Method parameters in com.spotify.github.v3.checks with type arguments of type CheckRunResponse Modifier and Type Method Description ImmutableCheckRunResponseList.Builder
ImmutableCheckRunResponseList.Builder. addAllCheckRuns(Iterable<? extends CheckRunResponse> elements)
Adds elements tocheckRuns
list.ImmutableCheckRunResponseList.Builder
ImmutableCheckRunResponseList.Builder. checkRuns(Iterable<? extends CheckRunResponse> elements)
Sets or replaces all elements forcheckRuns
list.ImmutableCheckRunResponseList
ImmutableCheckRunResponseList. withCheckRuns(Iterable<? extends CheckRunResponse> elements)
Copy the current immutable object with elements that replace the content ofcheckRuns
. -
Uses of CheckRunResponse in com.spotify.github.v3.clients
Methods in com.spotify.github.v3.clients that return types with arguments of type CheckRunResponse Modifier and Type Method Description CompletableFuture<CheckRunResponse>
ChecksClient. createCheckRun(CheckRunRequest checkRun)
Create a checkRun.CompletableFuture<CheckRunResponse>
ChecksClient. getCheckRun(long id)
Gets a checkRun by id.CompletableFuture<CheckRunResponse>
ChecksClient. updateCheckRun(long id, CheckRunRequest checkRun)
Updates a checkRun.
-