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

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

Go to download

The RMLMapper executes RML rules to generate high quality Linked Data from multiple originally (semi-)structured data sources.

The newest version!
package be.ugent.rml.functions;

import be.ugent.rml.termgenerator.TermGenerator;

import java.util.List;

public class ParameterValuePair {

    private List parameterGenerators;
    private List valueGenerators;

    public ParameterValuePair(List parameterGenerators, List valueGenerators) {
        this.parameterGenerators = parameterGenerators;
        this.valueGenerators = valueGenerators;
    }

    public List getParameterGenerators() {
        return parameterGenerators;
    }

    public List getValueGenerators() {
        return valueGenerators;
    }

    /**
     * To string method
     *
     * @return string
     */
    @Override
    public String toString() {
        return parameterGenerators + "=" + valueGenerators;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy