Here you can find the source of documentFromMap(Bindings from)
public static Document documentFromMap(Bindings from)
//package com.java2s; // it under the terms of the GNU General Public License as published by import javax.script.Bindings; import org.bson.Document; public class Main { public static Document documentFromMap(Bindings from) { return new Document(from); }/*from w w w .j ava 2 s .com*/ }