org.protege.editor.owl.rdf.SparqlResultSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparql-query-plugin Show documentation
Show all versions of sparql-query-plugin Show documentation
Plug-in for the Protege Desktop ontology editor that provides support for writing and executing SPARQL queries.
package org.protege.editor.owl.rdf;
import java.util.ArrayList;
import java.util.List;
public class SparqlResultSet {
private List columnNames = new ArrayList();
private List> entries = new ArrayList>();
public SparqlResultSet(List colunmNames) {
this.columnNames = new ArrayList(colunmNames);
}
public void addRow(List