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

fr.inria.edelweiss.kgdqp.sparqlendpoint.SparqlEndpointInterface Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package fr.inria.edelweiss.kgdqp.sparqlendpoint;

/**
 *
 * @author Alban Gaignard 
 */
public interface SparqlEndpointInterface {

    /**
     *
     * @param query
     * @return
     */
    public String getEdges(String query);
    
    /**
     *
     * @param query
     * @return
     */
    public String getNodes(String query);
    
    /**
     *
     * @param query
     * @return
     */
    public String query(String query);

    /**
     *
     * @return
     */
    public String getEndpoint();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy