Uses of Interface
org.projectnessie.model.Transplant
-
Packages that use Transplant Package Description org.projectnessie.api org.projectnessie.api.http org.projectnessie.model -
-
Uses of Transplant in org.projectnessie.api
Methods in org.projectnessie.api with parameters of type Transplant Modifier and Type Method Description voidTreeApi. transplantCommitsIntoBranch(@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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String branchName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String hash, @Valid String message, @Valid Transplant transplant)cherry pick a set of commits into a branch. -
Uses of Transplant in org.projectnessie.api.http
Methods in org.projectnessie.api.http with parameters of type Transplant Modifier and Type Method Description voidHttpTreeApi. transplantCommitsIntoBranch(String branchName, String hash, String message, Transplant transplant) -
Uses of Transplant in org.projectnessie.model
Classes in org.projectnessie.model that implement Transplant Modifier and Type Class Description classImmutableTransplantImmutable implementation ofTransplant.Methods in org.projectnessie.model with parameters of type Transplant Modifier and Type Method Description static ImmutableTransplantImmutableTransplant. copyOf(Transplant instance)Creates an immutable copy of aTransplantvalue.ImmutableTransplant.BuilderImmutableTransplant.Builder. from(Transplant instance)Fill a builder with attribute values from the providedTransplantinstance.
-