Package org.ontoware.rdf2go.model.impl

Examples of org.ontoware.rdf2go.model.impl.QueryRowImpl


   * patch from garpinc against nulls -
   * http://issues.semweb4j.org/browse/RTGO-65
   */
  public QueryRow next() {
    QuerySolution qs = this.resultSet.nextSolution();
    QueryRowImpl row = new QueryRowImpl();
    for(String v : this.table.getVariables()) {
      RDFNode node = qs.get(v);
      assert node != null : "null node for varname " + v
              + ". Do you have unbound variables in the query?";
      try {
        row.put(v, TypeConversion.toRDF2Go((node == null ? null : node.asNode())));
      } catch(ModelRuntimeException e) {
        throw new ModelRuntimeException(e);
      }
    }
    return row;
View Full Code Here

TOP

Related Classes of org.ontoware.rdf2go.model.impl.QueryRowImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.