Interface DocumentMetadata.Builder1

Enclosing class:
DocumentMetadata

public static interface DocumentMetadata.Builder1
Builder helper class.
  • Method Details

    • value

      DocumentMetadata value(@Nullable List<String> value)
      Set the value of this DocumentMetadata instance.
      Parameters:
      value - An array of string values associated with the metadata key. If the key already exists, its values will be overwritten. Setting the value to null will delete the metadata key-value pair.
      Returns:
      The DocumentMetadata instance.
    • value

      default DocumentMetadata value(@Nonnull String... value)
      Set the value of this DocumentMetadata instance.
      Parameters:
      value - An array of string values associated with the metadata key. If the key already exists, its values will be overwritten. Setting the value to null will delete the metadata key-value pair.
      Returns:
      The DocumentMetadata instance.