Uses of Interface
com.spotify.github.v3.repos.PushCommit
-
Packages that use PushCommit Package Description com.spotify.github.v3.activity.events com.spotify.github.v3.repos -
-
Uses of PushCommit in com.spotify.github.v3.activity.events
Methods in com.spotify.github.v3.activity.events that return types with arguments of type PushCommit Modifier and Type Method Description List<PushCommit>
ImmutablePushEvent. commits()
An array of commit objects describing the pushed commits.List<PushCommit>
PushEvent. commits()
An array of commit objects describing the pushed commits.Optional<PushCommit>
ImmutablePushEvent. headCommit()
The push commit object of the most recent commit on ref after the push.Optional<PushCommit>
PushEvent. headCommit()
The push commit object of the most recent commit on ref after the push.Methods in com.spotify.github.v3.activity.events with parameters of type PushCommit Modifier and Type Method Description ImmutablePushEvent.Builder
ImmutablePushEvent.Builder. addCommits(PushCommit element)
Adds one element tocommits
list.ImmutablePushEvent.Builder
ImmutablePushEvent.Builder. addCommits(PushCommit... elements)
Adds elements tocommits
list.ImmutablePushEvent.Builder
ImmutablePushEvent.Builder. headCommit(PushCommit headCommit)
Initializes the optional valueheadCommit
to headCommit.ImmutablePushEvent
ImmutablePushEvent. withCommits(PushCommit... elements)
Copy the current immutable object with elements that replace the content ofcommits
.ImmutablePushEvent
ImmutablePushEvent. withHeadCommit(PushCommit value)
Copy the current immutable object by setting a present value for the optionalheadCommit
attribute.Method parameters in com.spotify.github.v3.activity.events with type arguments of type PushCommit Modifier and Type Method Description ImmutablePushEvent.Builder
ImmutablePushEvent.Builder. addAllCommits(Iterable<? extends PushCommit> elements)
Adds elements tocommits
list.ImmutablePushEvent.Builder
ImmutablePushEvent.Builder. commits(Iterable<? extends PushCommit> elements)
Sets or replaces all elements forcommits
list.ImmutablePushEvent.Builder
ImmutablePushEvent.Builder. headCommit(Optional<? extends PushCommit> headCommit)
Initializes the optional valueheadCommit
to headCommit.ImmutablePushEvent
ImmutablePushEvent. withCommits(Iterable<? extends PushCommit> elements)
Copy the current immutable object with elements that replace the content ofcommits
.ImmutablePushEvent
ImmutablePushEvent. withHeadCommit(Optional<? extends PushCommit> optional)
Copy the current immutable object by setting an optional value for theheadCommit
attribute. -
Uses of PushCommit in com.spotify.github.v3.repos
Classes in com.spotify.github.v3.repos that implement PushCommit Modifier and Type Class Description class
ImmutablePushCommit
Immutable implementation ofPushCommit
.Methods in com.spotify.github.v3.repos with parameters of type PushCommit Modifier and Type Method Description static ImmutablePushCommit
ImmutablePushCommit. copyOf(PushCommit instance)
Creates an immutable copy of aPushCommit
value.ImmutablePushCommit.Builder
ImmutablePushCommit.Builder. from(PushCommit instance)
Fill a builder with attribute values from the providedPushCommit
instance.
-