Java org.springframework.data.mongodb.core.query Update fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.mongodb.core.query Update fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.mongodb.core.query Update.

The text is from its open source code.

Constructor

Method

UpdateaddToSet(String key, Object value)
Update using the $addToSet update modifier
DocumentgetUpdateObject()
Updateinc(String key, Number inc)
Update using the $inc update modifier
Updatepull(String key, Object value)
Update using the $pull update modifier
Updatepush(String key, Object value)
Update using the $push update modifier
UpdatepushAll(String key, Object[] values)
Update using the $pushAll update modifier.
Updateset(String key, Object value)
Update using the $set update modifier
Updateunset(String key)
Update using the $unset update modifier