Java Script Binding documentFromMap(Bindings from)

Here you can find the source of documentFromMap(Bindings from)

Description

document From Map

License

Open Source License

Declaration

public static Document documentFromMap(Bindings from) 

Method Source Code

//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*/
}

Related

  1. buildOptions(T buildedOptions, Bindings options)
  2. convertArray(Bindings from)
  3. getBindings(Bindings bindings)
  4. getBindings(Map bindings)
  5. merge(Bindings former, Bindings latter)
  6. putSimpleField(String field, Bindings options, BasicDBObjectBuilder command)