Uses of Class
org.gitlab4j.api.models.Branch
Packages that use Branch
-
Uses of Branch in org.gitlab4j.api
Methods in org.gitlab4j.api that return BranchModifier and TypeMethodDescriptionRepositoryApi.createBranch(Object projectIdOrPath, String branchName, String ref) Creates a branch for the project.Get a single project repository branch.RepositoryApi.protectBranch(Object projectIdOrPath, String branchName) Protects a single project repository branch.RepositoryApi.unprotectBranch(Object projectIdOrPath, String branchName) Unprotects a single project repository branch.Methods in org.gitlab4j.api that return types with arguments of type BranchModifier and TypeMethodDescriptionRepositoryApi.getBranches(Object projectIdOrPath) Get a list of repository branches from a project, sorted by name alphabetically.RepositoryApi.getBranches(Object projectIdOrPath, int itemsPerPage) Get a Pager of repository branches from a project, sorted by name alphabetically.RepositoryApi.getBranches(Object projectIdOrPath, int page, int perPage) Get a list of repository branches from a project, sorted by name alphabetically.RepositoryApi.getBranches(Object projectIdOrPath, String search) Get a List of repository branches from a project, sorted by name alphabetically, filter by the search term.RepositoryApi.getBranches(Object projectIdOrPath, String search, int itemsPerPage) Get a Pager of repository branches from a project, sorted by name alphabetically, filter by the search term.RepositoryApi.getBranchesStream(Object projectIdOrPath) Get a Stream of repository branches from a project, sorted by name alphabetically.RepositoryApi.getBranchesStream(Object projectIdOrPath, String search) Get a Stream of repository branches from a project, sorted by name alphabetically, filter by the search term.RepositoryApi.getOptionalBranch(Object projectIdOrPath, String branchName) Get an Optional instance with the value for the specific repository branch. -
Uses of Branch in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return BranchModifier and TypeMethodDescriptionBranch.withCommit(Commit commit) Branch.withDevelopersCanMerge(Boolean developersCanMerge) Branch.withDevelopersCanPush(Boolean developersCanPush) Branch.withIsProtected(Boolean isProtected) Branch.withMerged(Boolean merged) Methods in org.gitlab4j.api.models with parameters of type Branch