be.ugent.rml.functions.ParameterValueOriginPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rmlmapper Show documentation
Show all versions of rmlmapper Show documentation
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 ParameterValueOriginPair {
private List parameterGenerators;
private List valueGeneratorPairs;
public ParameterValueOriginPair(List parameterGenerators, List valueGeneratorPairs) {
this.parameterGenerators = parameterGenerators;
this.valueGeneratorPairs = valueGeneratorPairs;
}
public List getParameterGenerators() {
return parameterGenerators;
}
public List getValueGeneratorPairs() {
return valueGeneratorPairs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy