Uses of Interface
com.spotify.github.v3.repos.Commit
-
Packages that use Commit Package Description com.spotify.github.v3.clients com.spotify.github.v3.repos -
-
Uses of Commit in com.spotify.github.v3.clients
Methods in com.spotify.github.v3.clients that return types with arguments of type Commit Modifier and Type Method Description CompletableFuture<Commit>
GitDataClient. createCommit(String message, List<String> parents, String treeSha)
Create a commit which references a treeCompletableFuture<Commit>
RepositoryClient. getCommit(String sha)
Get a repository commit. -
Uses of Commit in com.spotify.github.v3.repos
Classes in com.spotify.github.v3.repos that implement Commit Modifier and Type Class Description class
ImmutableCommit
Immutable implementation ofCommit
.Methods in com.spotify.github.v3.repos that return Commit Modifier and Type Method Description Commit
CommitComparison. baseCommit()
BaseCommit
ImmutableCommitComparison. baseCommit()
BaseCommit
CommitComparison. mergeBaseCommit()
Merge baseCommit
ImmutableCommitComparison. mergeBaseCommit()
Merge baseMethods in com.spotify.github.v3.repos that return types with arguments of type Commit Modifier and Type Method Description List<Commit>
CommitComparison. commits()
CommitsList<Commit>
ImmutableCommitComparison. commits()
CommitsMethods in com.spotify.github.v3.repos with parameters of type Commit Modifier and Type Method Description ImmutableCommitComparison.Builder
ImmutableCommitComparison.Builder. addCommits(Commit element)
Adds one element tocommits
list.ImmutableCommitComparison.Builder
ImmutableCommitComparison.Builder. addCommits(Commit... elements)
Adds elements tocommits
list.ImmutableCommitComparison.Builder
ImmutableCommitComparison.Builder. baseCommit(Commit baseCommit)
Initializes the value for thebaseCommit
attribute.static ImmutableCommit
ImmutableCommit. copyOf(Commit instance)
Creates an immutable copy of aCommit
value.ImmutableCommit.Builder
ImmutableCommit.Builder. from(Commit instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.repos.Commit
instance.ImmutableCommitComparison.Builder
ImmutableCommitComparison.Builder. mergeBaseCommit(Commit mergeBaseCommit)
Initializes the value for themergeBaseCommit
attribute.ImmutableCommitComparison
ImmutableCommitComparison. withBaseCommit(Commit value)
Copy the current immutable object by setting a value for thebaseCommit
attribute.ImmutableCommitComparison
ImmutableCommitComparison. withCommits(Commit... elements)
Copy the current immutable object with elements that replace the content ofcommits
.ImmutableCommitComparison
ImmutableCommitComparison. withMergeBaseCommit(Commit value)
Copy the current immutable object by setting a value for themergeBaseCommit
attribute.Method parameters in com.spotify.github.v3.repos with type arguments of type Commit Modifier and Type Method Description ImmutableCommitComparison.Builder
ImmutableCommitComparison.Builder. addAllCommits(Iterable<? extends Commit> elements)
Adds elements tocommits
list.ImmutableCommitComparison.Builder
ImmutableCommitComparison.Builder. commits(Iterable<? extends Commit> elements)
Sets or replaces all elements forcommits
list.ImmutableCommitComparison
ImmutableCommitComparison. withCommits(Iterable<? extends Commit> elements)
Copy the current immutable object with elements that replace the content ofcommits
.
-