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

be.ugent.rml.functions.SingleRecordFunctionExecutor 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.idlab.knows.dataio.record.Record;

public interface SingleRecordFunctionExecutor {

    Object execute(Record record) throws Exception;

    /**
     * Returns {@code true} when a function is used in this extractor that needs a special marker
     * to indicate "End-of-File" (EOF).
     */
    default boolean needsEOFMarker() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy