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

org.aksw.jenax.sparql.fragment.api.Connective Maven / Gradle / Ivy

There is a newer version: 5.0.0-1
Show newest version
package org.aksw.jenax.sparql.fragment.api;

import java.util.List;

import org.apache.jena.sparql.core.Var;

/** A fragment together with a distinguished list of variables which can be used to "connect" fragments.
 *  It is assumed that all vars of the connective are contained in fragment.getVars().
 */
public interface Connective {
    Fragment getFragment();
    List getVars();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy