Package org.mongojack.internal.update

Examples of org.mongojack.internal.update.ComplexUpdateOperationValue


         * @param value
         *            The value
         * @return this object
         */
        public Builder bit(String field, String operation, int value) {
            return addOperation("$bit", field, new ComplexUpdateOperationValue(
                    new BasicDBObject(operation, value)));
        }
View Full Code Here


         * @return this object
         */
        public Builder bit(String field, String operation1, int value1,
                String operation2, int value2) {
            return addOperation("$bit", field,
                    new ComplexUpdateOperationValue(new BasicDBObject(
                            operation1, value1).append(operation2, value2)));
        }
View Full Code Here

TOP

Related Classes of org.mongojack.internal.update.ComplexUpdateOperationValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.