Uses of Class
org.projectnessie.model.ContentsKey
-
Packages that use ContentsKey Package Description org.projectnessie.api Main Nessie APIs.org.projectnessie.model -
-
Uses of ContentsKey in org.projectnessie.api
Methods in org.projectnessie.api with parameters of type ContentsKey Modifier and Type Method Description voidContentsApi. deleteContents(@Valid ContentsKey key, @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 branch, @Pattern(regexp="^[0-9a-fA-F]{16,64}$",message="Hash must consist of the hex representation of 8-32 bytes") String hash, String message)Deprecated.ContentsContentsApi. getContents(@Valid ContentsKey key, @Pattern(regexp="^(([0-9a-fA-F]{16,64})|([A-Za-z](((?![.][.])[A-Za-z0-9./_-])*[A-Za-z0-9._-])?))$",message="Reference must be either a reference name or hash, start with a letter, followed by letters, digits, a ./_- character, not end with a slash, not contain .. or consist of the hex representation of 8-32 bytes") String ref)Get the properties of an object.voidContentsApi. setContents(@Valid @NotNull ContentsKey key, @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 branch, @Pattern(regexp="^[0-9a-fA-F]{16,64}$",message="Hash must consist of the hex representation of 8-32 bytes") @NotNull String hash, String message, @Valid @NotNull Contents contents)Deprecated. -
Uses of ContentsKey in org.projectnessie.model
Methods in org.projectnessie.model that return ContentsKey Modifier and Type Method Description static ContentsKeyContentsKey. fromPathString(String encoded)Convert from path encoded string to normal string.ContentsKeyImmutableContentsWithKey. getKey()ContentsKeyImmutableDelete. getKey()ContentsKeyImmutablePut. getKey()ContentsKeyImmutableUnchanged. getKey()ContentsKeyMultiGetContentsResponse.ContentsWithKey. getKey()ContentsKeyOperation. getKey()ContentsKeyEntriesResponse.Entry. getName()ContentsKeyImmutableEntry. getName()static ContentsKeyContentsKey. of(String... elements)static ContentsKeyContentsKey. of(List<String> elements)Methods in org.projectnessie.model that return types with arguments of type ContentsKey Modifier and Type Method Description List<ContentsKey>ImmutableMultiGetContentsRequest. getRequestedKeys()List<ContentsKey>MultiGetContentsRequest. getRequestedKeys()Methods in org.projectnessie.model with parameters of type ContentsKey Modifier and Type Method Description ImmutableMultiGetContentsRequest.BuilderImmutableMultiGetContentsRequest.Builder. addRequestedKeys(ContentsKey element)Adds one element torequestedKeyslist.ImmutableMultiGetContentsRequest.BuilderImmutableMultiGetContentsRequest.Builder. addRequestedKeys(ContentsKey... elements)Adds elements torequestedKeyslist.ImmutableContentsWithKey.BuilderImmutableContentsWithKey.Builder. key(ContentsKey key)Initializes the value for thekeyattribute.ImmutableDelete.BuilderImmutableDelete.Builder. key(ContentsKey key)Initializes the value for thekeyattribute.ImmutablePut.BuilderImmutablePut.Builder. key(ContentsKey key)Initializes the value for thekeyattribute.ImmutableUnchanged.BuilderImmutableUnchanged.Builder. key(ContentsKey key)Initializes the value for thekeyattribute.ImmutableEntry.BuilderImmutableEntry.Builder. name(ContentsKey name)Initializes the value for thenameattribute.static MultiGetContentsRequestMultiGetContentsRequest. of(ContentsKey... keys)static MultiGetContentsResponse.ContentsWithKeyMultiGetContentsResponse.ContentsWithKey. of(ContentsKey key, Contents contents)static Operation.DeleteOperation.Delete. of(ContentsKey key)static Operation.PutOperation.Put. of(ContentsKey key, Contents contents)static Operation.UnchangedOperation.Unchanged. of(ContentsKey key)ImmutableContentsWithKeyImmutableContentsWithKey. withKey(ContentsKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableDeleteImmutableDelete. withKey(ContentsKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutablePutImmutablePut. withKey(ContentsKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableUnchangedImmutableUnchanged. withKey(ContentsKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableEntryImmutableEntry. withName(ContentsKey value)Copy the current immutable object by setting a value for thenameattribute.ImmutableMultiGetContentsRequestImmutableMultiGetContentsRequest. withRequestedKeys(ContentsKey... elements)Copy the current immutable object with elements that replace the content ofrequestedKeys.Method parameters in org.projectnessie.model with type arguments of type ContentsKey Modifier and Type Method Description ImmutableMultiGetContentsRequest.BuilderImmutableMultiGetContentsRequest.Builder. addAllRequestedKeys(Iterable<? extends ContentsKey> elements)Adds elements torequestedKeyslist.static MultiGetContentsRequestMultiGetContentsRequest. of(List<ContentsKey> keys)ImmutableMultiGetContentsRequest.BuilderImmutableMultiGetContentsRequest.Builder. requestedKeys(Iterable<? extends ContentsKey> elements)Sets or replaces all elements forrequestedKeyslist.ImmutableMultiGetContentsRequestImmutableMultiGetContentsRequest. withRequestedKeys(Iterable<? extends ContentsKey> elements)Copy the current immutable object with elements that replace the content ofrequestedKeys.
-