Package org.openrdf.query.algebra.evaluation.cursors

Examples of org.openrdf.query.algebra.evaluation.cursors.ProjectionCursor


  public Cursor<BindingSet> evaluate(Projection projection, BindingSet bindings)
    throws StoreException
  {
    Cursor<BindingSet> result;
    result = this.evaluate(projection.getArg(), bindings);
    result = new ProjectionCursor(projection, result, bindings);
    return result;
  }
View Full Code Here

TOP

Related Classes of org.openrdf.query.algebra.evaluation.cursors.ProjectionCursor

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.