be.ugent.rml.conformer.Converter 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.conformer;
import java.util.Map;
/**
* Interface for converters of a mapping format to the RML mapping format. Used by MappingConformer
* to convert to RML if needed.
*/
interface Converter {
/**
* Try to convert R2RML and old RML to new RML.
* Has to be atomic. Original model must be recovered if conversion fails.
*/
void convert(Map mappingOptions) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy