Uses of Interface
org.projectnessie.model.Branch
-
Packages that use Branch Package Description org.projectnessie.api org.projectnessie.api.http org.projectnessie.model -
-
Uses of Branch in org.projectnessie.api
Methods in org.projectnessie.api that return Branch Modifier and Type Method Description BranchTreeApi. commitMultipleOperations(@Valid @NotNull @Pattern(regexp="^[A-Za-z](((?![.][.])[A-Za-z0-9./_-])*[A-Za-z0-9._-])?$",message="Reference name must start with a letter, followed by letters, digits, a ./_- character, not end with a slash, not contain ..") String branchName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{16,64}$",message="Hash must consist of the hex representation of 8-32 bytes") String hash, @Valid @NotNull Operations operations)Commit multiple operations against the given branch expecting that branch to have the given hash as its latest commit.BranchTreeApi. getDefaultBranch()Get details for the default reference. -
Uses of Branch in org.projectnessie.api.http
Methods in org.projectnessie.api.http that return Branch Modifier and Type Method Description BranchHttpTreeApi. commitMultipleOperations(String branchName, String hash, Operations operations)BranchHttpTreeApi. getDefaultBranch() -
Uses of Branch in org.projectnessie.model
Classes in org.projectnessie.model that implement Branch Modifier and Type Class Description classImmutableBranchImmutable implementation ofBranch.Methods in org.projectnessie.model that return Branch Modifier and Type Method Description static BranchBranch. of(String name, String hash)Methods in org.projectnessie.model with parameters of type Branch Modifier and Type Method Description static ImmutableBranchImmutableBranch. copyOf(Branch instance)Creates an immutable copy of aBranchvalue.ImmutableBranch.BuilderImmutableBranch.Builder. from(Branch instance)Fill a builder with attribute values from the providedorg.projectnessie.model.Branchinstance.
-