Package com.asakusafw.runtime.stage.input

Examples of com.asakusafw.runtime.stage.input.DefaultSplitCombiner$Environment


    Environment env(String... keyVals) {
        if (keyVals.length % 2 != 0) {
            throw new IllegalArgumentException();
        }
        Environment result = new Environment();
        for (int ii = 0; ii < keyVals.length; ii+=2) {
            result.put(keyVals[ii], keyVals[ii+1]);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.runtime.stage.input.DefaultSplitCombiner$Environment

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.