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

be.ugent.rml.access.Access Maven / Gradle / Ivy

Go to download

The RMLMapper executes RML rules to generate high quality Linked Data from multiple originally (semi-)structured data sources.

There is a newer version: 7.2.0
Show newest version
package be.ugent.rml.access;

import java.io.IOException;
import java.io.InputStream;
import java.sql.SQLException;
import java.util.Map;

/**
 * This interface represents the access to a data source.
 * For example, a local file, a remote file, a relational database, and so on.
 */
public interface Access {

    /**
     * This method returns an InputStream for the access.
     * @return the InputStream corresponding to the access.
     * @throws IOException
     */
    InputStream getInputStream() throws IOException, SQLException, ClassNotFoundException;

    /**
     * This method returns a map of datatypes.
     * References to values are mapped to their datatypes, if available.
     * @return map of datatypes.
     */
    Map getDataTypes();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy