be.ugent.rml.extractor.ReferenceExtractor 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.extractor;
import be.ugent.idlab.knows.dataio.record.Record;
import be.ugent.rml.functions.SingleRecordFunctionExecutor;
import java.io.IOException;
import java.util.List;
public class ReferenceExtractor implements Extractor, SingleRecordFunctionExecutor {
public String reference;
private boolean ignoreDoubleQuotes;
public ReferenceExtractor(String reference, boolean ignoreDoubleQuotes) {
this.reference = reference;
this.ignoreDoubleQuotes = ignoreDoubleQuotes;
}
public ReferenceExtractor(String reference) {
this(reference, false);
}
@Override
public List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy