object MutateInSpec

Methods to allow constructing a sequence of MutateInSpecs.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MutateInSpec
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def arrayAddUnique[T](path: String, value: T)(implicit serializer: JsonSerializer[T]): ArrayAddUnique

    Returns a MutateInSpec with the intent of inserting a value into an existing JSON array, but only if the value is not already contained in the array (by way of string comparison).

    Returns a MutateInSpec with the intent of inserting a value into an existing JSON array, but only if the value is not already contained in the array (by way of string comparison).

    Will error if the last element of the path does not exist or is not an array.

    path

    the path identifying an array to which to append the value, and an index. E.g. "foo.bar[3]"

    value

    the value to insert. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

  2. def arrayAppend[T](path: String, values: Seq[T])(implicit serializer: JsonSerializer[T]): ArrayAppend

    Returns a MutateInSpec with the intent of appending a value to an existing JSON array.

    Returns a MutateInSpec with the intent of appending a value to an existing JSON array.

    Will error if the last element of the path does not exist or is not an array.

    path

    the path identifying an array to which to append the value.

    values

    the values to append. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

    serializer

    an implicit JsonSerializer. For any supported type T this will be found automatically.

  3. def arrayInsert[T](path: String, values: Seq[T])(implicit serializer: JsonSerializer[T]): ArrayInsert

    Returns a MutateInSpec with the intent of inserting a value into an existing JSON array.

    Returns a MutateInSpec with the intent of inserting a value into an existing JSON array.

    Will error if the last element of the path does not exist or is not an array.

    path

    the path identifying an array to which to append the value, and an index. E.g. "foo.bar[3]"

    values

    the value(s) to insert. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

    serializer

    an implicit JsonSerializer. For any supported type T this will be found automatically.

  4. def arrayPrepend[T](path: String, values: Seq[T])(implicit serializer: JsonSerializer[T]): ArrayPrepend

    Returns a MutateInSpec with the intent of prepending a value to an existing JSON array.

    Returns a MutateInSpec with the intent of prepending a value to an existing JSON array.

    Will error if the last element of the path does not exist or is not an array.

    path

    the path identifying an array to which to prepend the value.

    values

    the value(s) to prepend. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

    serializer

    an implicit JsonSerializer. For any supported type T this will be found automatically.

  5. def decrement(path: String, delta: Long): Increment

    Returns a MutateInSpec with the intent of decrementing a numerical field in a JSON object.

    Returns a MutateInSpec with the intent of decrementing a numerical field in a JSON object.

    If the field does not exist then it is created and takes the value of delta * -1.

    path

    the path identifying a numerical field to adjust or create.

    delta

    the value to decrement the field by.

  6. def increment(path: String, delta: Long): Increment

    Returns a MutateInSpec with the intent of incrementing a numerical field in a JSON object.

    Returns a MutateInSpec with the intent of incrementing a numerical field in a JSON object.

    If the field does not exist then it is created and takes the value of delta.

    path

    the path identifying a numerical field to adjust or create.

    delta

    the value to increment the field by.

  7. def insert[T](path: String, value: T)(implicit serializer: JsonSerializer[T]): Insert

    Returns a MutateInSpec with the intent of inserting a value into a JSON object.

    Returns a MutateInSpec with the intent of inserting a value into a JSON object.

    Will error if the last element of the path already exists.

    path

    the path identifying where to insert the value.

    value

    the value to insert. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

    serializer

    an implicit JsonSerializer. For any supported type T this will be found automatically.

  8. def remove(path: String): Remove

    Returns a MutateInSpec with the intent of removing a value from a JSON object.

    Returns a MutateInSpec with the intent of removing a value from a JSON object.

    Will error if the last element of the path does not exist.

    path

    the path to be removed.

  9. def replace[T](path: String, value: T)(implicit serializer: JsonSerializer[T]): Replace

    Returns a MutateInSpec with the intent of replacing an existing value in a JSON object.

    Returns a MutateInSpec with the intent of replacing an existing value in a JSON object.

    If the path is an empty string (""), the value replace the entire contents of the document.

    Will error if the last element of the path does not exist.

    path

    the path identifying where to replace the value.

    value

    the value to replace. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

    serializer

    an implicit JsonSerializer. For any supported type T this will be found automatically.

  10. def upsert[T](path: String, value: T)(implicit serializer: JsonSerializer[T]): Upsert

    Returns a MutateInSpec with the intent of upserting a value into a JSON object.

    Returns a MutateInSpec with the intent of upserting a value into a JSON object.

    That is, the value will be replaced if the path already exists, or inserted if not.

    path

    the path identifying where to upsert the value.

    value

    the value to upsert. this can be of any type for which an implicit JsonSerializer can be found: a list of types that are supported 'out of the box' is available at these JSON docs

    serializer

    an implicit JsonSerializer. For any supported type T this will be found automatically.