All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.ugent.rml.functions.DynamicSingleRecordFunctionExecutor Maven / Gradle / Ivy

package be.ugent.rml.functions;

import be.ugent.idlab.knows.functions.agent.Agent;

import java.util.ArrayList;
import java.util.List;

public class DynamicSingleRecordFunctionExecutor extends AbstractSingleRecordFunctionExecutor {

    public DynamicSingleRecordFunctionExecutor(List parameterValuePairs, final Agent functionAgent) {
        List pairs = new ArrayList<>();

        parameterValuePairs.forEach(pair -> {
            List objectGeneratorOriginPairs = new ArrayList<>();

            pair.getValueGenerators().forEach(vGen -> objectGeneratorOriginPairs.add(new TermGeneratorOriginPair(vGen, "_default")));

            pairs.add(new ParameterValueOriginPair(pair.getParameterGenerators(), objectGeneratorOriginPairs));
        });

        functionExecutor = new DynamicMultipleRecordsFunctionExecutor(pairs, functionAgent);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy