Uses of Class
org.projectnessie.model.Reference.ReferenceType
-
Packages that use Reference.ReferenceType Package Description org.projectnessie.api org.projectnessie.api.http org.projectnessie.model -
-
Uses of Reference.ReferenceType in org.projectnessie.api
Methods in org.projectnessie.api with parameters of type Reference.ReferenceType Modifier and Type Method Description voidTreeApi. assignReference(Reference.ReferenceType referenceType, @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 referenceName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String oldHash, @Valid @NotNull Reference assignTo)Update a reference's HEAD to point to a different commit.voidTreeApi. deleteReference(Reference.ReferenceType referenceType, @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 referenceName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String hash)Delete a named reference. -
Uses of Reference.ReferenceType in org.projectnessie.api.http
Methods in org.projectnessie.api.http with parameters of type Reference.ReferenceType Modifier and Type Method Description voidHttpTreeApi. assignReference(Reference.ReferenceType referenceType, String referenceName, String oldHash, Reference assignTo)voidHttpTreeApi. deleteReference(Reference.ReferenceType referenceType, String referenceName, String hash) -
Uses of Reference.ReferenceType in org.projectnessie.model
Methods in org.projectnessie.model that return Reference.ReferenceType Modifier and Type Method Description default Reference.ReferenceTypeBranch. getType()default Reference.ReferenceTypeDetached. getType()Reference.ReferenceTypeReference. getType()default Reference.ReferenceTypeTag. getType()static Reference.ReferenceTypeReference.ReferenceType. valueOf(String name)Returns the enum constant of this type with the specified name.static Reference.ReferenceType[]Reference.ReferenceType. values()Returns an array containing the constants of this enum type, in the order they are declared.
-