UpdateOperations<T> |
UpdateOperations.addToSet(String field,
Iterable<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
adds the values to an array field if they doesn't already exist in the array
|
UpdateOperations<T> |
UpdateOperations.addToSet(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
adds the value to an array field if it doesn't already exist in the array
|
UpdateOperations<T> |
UpdateOperations.addToSet(String field,
List<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
adds the values to an array field if they doesn't already exist in the array
|
UpdateOperations<T> |
UpdateOpsImpl.addToSet(String field,
Iterable<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.addToSet(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.addToSet(String field,
List<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.dec(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
Decrements the numeric field by 1
|
UpdateOperations<T> |
UpdateOperations.dec(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
Decrements the numeric field by value (must be a positive Double,
Float, Long, or Integer).
|
UpdateOperations<T> |
UpdateOpsImpl.dec(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.dec(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.disableValidation() |
Deprecated, for removal: This API element is subject to removal in a future version.
Turns off validation (for all calls made after)
|
UpdateOperations<T> |
UpdateOpsImpl.disableValidation() |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.enableValidation() |
Deprecated, for removal: This API element is subject to removal in a future version.
Turns on validation (for all calls made after); by default validation is on
|
UpdateOperations<T> |
UpdateOpsImpl.enableValidation() |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.inc(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
Increments the numeric field by 1
|
UpdateOperations<T> |
UpdateOperations.inc(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
increments the numeric field by value (negatives are allowed)
|
UpdateOperations<T> |
UpdateOpsImpl.inc(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.inc(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.max(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
Sets the numeric field to value if it is greater than the current value.
|
UpdateOperations<T> |
UpdateOpsImpl.max(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.min(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
sets the numeric field to value if it is less than the current value.
|
UpdateOperations<T> |
UpdateOpsImpl.min(String field,
Number value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.push(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
Adds new values to an array field.
|
UpdateOperations<T> |
UpdateOperations.push(String field,
Object value,
PushOptions options) |
Deprecated, for removal: This API element is subject to removal in a future version.
Adds new values to an array field at the given position
|
UpdateOperations<T> |
UpdateOperations.push(String field,
List<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
Adds new values to an array field.
|
UpdateOperations<T> |
UpdateOperations.push(String field,
List<?> values,
PushOptions options) |
Deprecated, for removal: This API element is subject to removal in a future version.
Adds new values to an array field at the given position
|
UpdateOperations<T> |
UpdateOpsImpl.push(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.push(String field,
Object value,
PushOptions options) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.push(String field,
List<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.push(String field,
List<?> values,
PushOptions options) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
protected UpdateOperations<T> |
UpdateOpsImpl.remove(String fieldExpr,
boolean firstNotLast) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.removeAll(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
removes the value from the array field
|
UpdateOperations<T> |
UpdateOperations.removeAll(String field,
List<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
removes the values from the array field
|
UpdateOperations<T> |
UpdateOpsImpl.removeAll(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOpsImpl.removeAll(String field,
List<?> values) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.removeFirst(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
removes the first value from the array
|
UpdateOperations<T> |
UpdateOpsImpl.removeFirst(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.removeLast(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
removes the last value from the array
|
UpdateOperations<T> |
UpdateOpsImpl.removeLast(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.set(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
sets the field value
|
UpdateOperations<T> |
UpdateOpsImpl.set(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.setOnInsert(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
sets the field on insert.
|
UpdateOperations<T> |
UpdateOpsImpl.setOnInsert(String field,
Object value) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
UpdateOperations<T> |
UpdateOperations.unset(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
removes the field
|
UpdateOperations<T> |
UpdateOpsImpl.unset(String field) |
Deprecated, for removal: This API element is subject to removal in a future version.
|