Package com.airhacks.enhydrator.in

Examples of com.airhacks.enhydrator.in.Row


public class ScriptingEnvironmentProvider {

    public static Bindings create(ScriptEngineManager scriptEngineManager, Row input) {
        Bindings bindings = scriptEngineManager.getBindings();
        bindings.put("$ROW", input);
        final Row emptyRow = new Row();
        emptyRow.useMemory(input.getMemory());
        bindings.put("$EMPTY", emptyRow);
        bindings.put("$MEMORY", input.getMemory());
        input.getColumns().forEach(c -> bindings.put(c.getName(), c));
        return bindings;
    }
View Full Code Here

TOP

Related Classes of com.airhacks.enhydrator.in.Row

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.