be.ugent.rml.MappingInfo 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.
package be.ugent.rml;
import be.ugent.rml.term.Term;
import be.ugent.rml.termgenerator.TermGenerator;
public class MappingInfo {
private Term term;
private TermGenerator termGenerator;
public MappingInfo(Term term, TermGenerator termGenerator) {
this.term = term;
this.termGenerator = termGenerator;
}
public Term getTerm() {
return term;
}
public TermGenerator getTermGenerator() {
return termGenerator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy