Uses of Interface
com.spotify.github.v3.repos.Branch
-
Packages that use Branch Package Description com.spotify.github.v3.activity.events com.spotify.github.v3.clients com.spotify.github.v3.repos -
-
Uses of Branch in com.spotify.github.v3.activity.events
Methods in com.spotify.github.v3.activity.events that return types with arguments of type Branch Modifier and Type Method Description List<Branch>
ImmutableStatusEvent. branches()
An array of branch objects containing the status' SHA.List<Branch>
StatusEvent. branches()
An array of branch objects containing the status' SHA.Methods in com.spotify.github.v3.activity.events with parameters of type Branch Modifier and Type Method Description ImmutableStatusEvent.Builder
ImmutableStatusEvent.Builder. addBranches(Branch element)
Adds one element tobranches
list.ImmutableStatusEvent.Builder
ImmutableStatusEvent.Builder. addBranches(Branch... elements)
Adds elements tobranches
list.ImmutableStatusEvent
ImmutableStatusEvent. withBranches(Branch... elements)
Copy the current immutable object with elements that replace the content ofbranches
.Method parameters in com.spotify.github.v3.activity.events with type arguments of type Branch Modifier and Type Method Description ImmutableStatusEvent.Builder
ImmutableStatusEvent.Builder. addAllBranches(Iterable<? extends Branch> elements)
Adds elements tobranches
list.ImmutableStatusEvent.Builder
ImmutableStatusEvent.Builder. branches(Iterable<? extends Branch> elements)
Sets or replaces all elements forbranches
list.ImmutableStatusEvent
ImmutableStatusEvent. withBranches(Iterable<? extends Branch> elements)
Copy the current immutable object with elements that replace the content ofbranches
. -
Uses of Branch in com.spotify.github.v3.clients
Methods in com.spotify.github.v3.clients that return types with arguments of type Branch Modifier and Type Method Description CompletableFuture<Branch>
RepositoryClient. getBranch(String branch)
Get a specific branch.Iterator<AsyncPage<Branch>>
RepositoryClient. listAllBranches()
List all branches in repositoryCompletableFuture<List<Branch>>
RepositoryClient. listBranches()
List some branches in repository. -
Uses of Branch in com.spotify.github.v3.repos
Classes in com.spotify.github.v3.repos that implement Branch Modifier and Type Class Description class
ImmutableBranch
Immutable implementation ofBranch
.Methods in com.spotify.github.v3.repos with parameters of type Branch Modifier and Type Method Description static ImmutableBranch
ImmutableBranch. copyOf(Branch instance)
Creates an immutable copy of aBranch
value.ImmutableBranch.Builder
ImmutableBranch.Builder. from(Branch instance)
Fill a builder with attribute values from the providedBranch
instance.
-