Java Nashorn Javascript Library wrap(Map map)

Here you can find the source of wrap(Map map)

Description

wrap

License

Open Source License

Declaration

public static Object wrap(Map<String, Object> map) 

Method Source Code

//package com.java2s;
/*//from  w ww  .  j  a v  a2 s.c o m
 * (C) Copyright 2015 Nuxeo SA (http://nuxeo.com/) and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser General Public License
 * (LGPL) version 2.1 which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-2.1.html
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * Contributors:
 *     Thierry Delprat <tdelprat@nuxeo.com>
 */

import java.util.Map;
import jdk.nashorn.api.scripting.ScriptObjectMirror;

public class Main {
    public static Object wrap(Map<String, Object> map) {
        return ScriptObjectMirror.wrap(map, null);
    }
}

Related

  1. rightAdjustCharHeadWithPrev(final int s, final IntHolder prev)
  2. toDate(final Object value)
  3. toRegExp(String source, String optionsString)
  4. unwrap(final Object source)
  5. unwrapMap(ScriptObjectMirror jso)