Here you can find the source of putSimpleField(String field, Bindings options, BasicDBObjectBuilder command)
public static void putSimpleField(String field, Bindings options, BasicDBObjectBuilder command)
//package com.java2s; // it under the terms of the GNU General Public License as published by import javax.script.Bindings; import com.mongodb.BasicDBObjectBuilder; public class Main { public static void putSimpleField(String field, Bindings options, BasicDBObjectBuilder command) { Object val = options.get(field); if (val != null) { command.add(field, val); }/*from w ww . j ava2s .c o m*/ } }