Examples of QueryIterPlainWrapper


Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

    assertFalse(index.containsCompatibleWithSharedDomain(binding("d", 10))) ;
    assertFalse(index.containsCompatibleWithSharedDomain(binding("abc", 10, 21, 32))) ;
    assertFalse(index.containsCompatibleWithSharedDomain(binding("xyz", 10, 11, 12))) ;
  }

  private QueryIterator fullData() { return new QueryIterPlainWrapper(fData.iterator()) ; }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

    assertFalse(index.containsCompatibleWithSharedDomain(binding("xyz", 10, 11, 12))) ;
  }

  private QueryIterator fullData() { return new QueryIterPlainWrapper(fData.iterator()) ; }

  private QueryIterator partData() { return new QueryIterPlainWrapper(pData.iterator()) ; }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

        List<Binding> solutions = new ArrayList<>() ;
        solutions.add(b1) ;
        solutions.add(b2) ;
       
        QueryIterator qIter = new QueryIterPlainWrapper(solutions.iterator(), null) ;
        ResultSet rs = new ResultSetStream(vars, null, qIter) ;
        return rs ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

                    s = NodeFunctions.str(n) ;
                b2.add(v, NodeFactory.createLiteral(s)) ;
            }
            bindings.add(b2) ;
        }
        ResultSet rs = new ResultSetStream(resultsActual.getResultVars(), null, new QueryIterPlainWrapper(bindings.iterator())) ;
        return ResultSetFactory.makeRewindable(rs) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

            if ( seen.contains(b) )
                continue ;
            seen.add(b) ;
            x.add(b) ;
        }
        QueryIterator qIter = new QueryIterPlainWrapper(x.iterator()) ;
        ResultSet rs = new ResultSetStream(results.getResultVars(), ModelFactory.createDefaultModel(), qIter) ;
        return ResultSetFactory.makeRewindable(rs) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

        return rows.iterator() ;
    }

    @Override
    public QueryIterator iterator(ExecutionContext execCxt) {
        return new QueryIterPlainWrapper(rows.iterator(), execCxt) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

            if ( count == 0 && ( joinType == LEFT)  )
                // Conditions on left?
                out.add(bindingLeft) ;
        }
       
        return new QueryIterPlainWrapper(out.iterator(), execCxt) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

            while ( qIter.hasNext() )
                bindings.add(qIter.nextBinding()) ;
            qIter.close();
           
            // QueryIterPlainWrapper is just to make it ia QuyerIterator again.
            return new GraphIterator(triple, new QueryIterPlainWrapper(bindings.iterator())) ;
        }
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

            Item itemRow = list.get(i) ;
            Binding b = BuilderBinding.build(itemRow) ;
            bindings.add(b) ;
        }
       
        QueryIterator qIter = new QueryIterPlainWrapper(bindings.listIterator()) ;
        return new ResultSetStream(Var.varNames(vars), null, qIter) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.engine.iterator.QueryIterPlainWrapper

            Node gn = iter.next();
            Binding b = BindingFactory.binding(Var.alloc(graphNode), gn) ;
            list.add(b) ;
        }

        QueryIterator qIter = new QueryIterPlainWrapper(list.iterator(), evaluator.getExecContext()) ;
        return TableFactory.create(qIter) ;

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.