Uses of Interface
org.projectnessie.model.Branch
-
Packages that use Branch Package Description org.projectnessie.api Main Nessie APIs.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(@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, @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)BranchTreeApi. getDefaultBranch()Get details for the default reference.Methods in org.projectnessie.api with parameters of type Branch Modifier and Type Method Description voidTreeApi. assignBranch(@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, @NotNull @Pattern(regexp="^[0-9a-fA-F]{16,64}$",message="Hash must consist of the hex representation of 8-32 bytes") String oldHash, @Valid @NotNull Branch branch)Update a branch. -
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.
-