-
Methods in org.gitlab4j.api that return types with arguments of type CommitRef
Modifier and Type |
Method |
Description |
List<CommitRef> |
CommitsApi.getCommitRefs(Object projectIdOrPath,
String sha) |
Get a List of all references (from branches or tags) a commit is pushed to.
|
Pager<CommitRef> |
CommitsApi.getCommitRefs(Object projectIdOrPath,
String sha,
int itemsPerPage) |
Get a Pager of references (from branches or tags) a commit is pushed to.
|
List<CommitRef> |
CommitsApi.getCommitRefs(Object projectIdOrPath,
String sha,
CommitRef.RefType refType) |
Get a List of all references (from branches or tags) a commit is pushed to.
|
Pager<CommitRef> |
CommitsApi.getCommitRefs(Object projectIdOrPath,
String sha,
CommitRef.RefType refType,
int itemsPerPage) |
Get a Pager of references (from branches or tags) a commit is pushed to.
|
Stream<CommitRef> |
CommitsApi.getCommitRefsStream(Object projectIdOrPath,
String sha) |
Get a Stream of all references (from branches or tags) a commit is pushed to.
|
Stream<CommitRef> |
CommitsApi.getCommitRefsStream(Object projectIdOrPath,
String sha,
CommitRef.RefType refType) |
Get a Stream of all references (from branches or tags) a commit is pushed to.
|