Tabnine Logo
MultiProjection.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.openrdf.query.algebra.MultiProjection
constructor

Best Java code snippets using org.openrdf.query.algebra.MultiProjection.<init> (Showing top 8 results out of 315)

origin: org.openrdf.sesame/sesame-spin

private UnaryTupleOperator visitTemplates(Resource templates)
  throws OpenRDFException
{
  List<ProjectionElemList> projElemLists = new ArrayList<ProjectionElemList>();
  Iteration<? extends Resource, QueryEvaluationException> iter = Statements.listResources(templates,
      store);
  while (iter.hasNext()) {
    Resource r = iter.next();
    ProjectionElemList projElems = visitTemplate(r);
    projElemLists.add(projElems);
  }
  UnaryTupleOperator expr;
  if (projElemLists.size() > 1) {
    MultiProjection proj = new MultiProjection();
    proj.setProjections(projElemLists);
    expr = proj;
  }
  else {
    Projection proj = new Projection();
    proj.setProjectionElemList(projElemLists.get(0));
    expr = proj;
  }
  Reduced reduced = new Reduced();
  reduced.setArg(expr);
  tupleRoot = reduced;
  SingletonSet stub = new SingletonSet();
  expr.setArg(stub);
  tupleNode = stub;
  return expr;
}
origin: com.mysema.rdf/rdfbean-sesame

  tuple = new Projection(tuple, projection);
}else if (!projectionElements.isEmpty()){
  tuple = new MultiProjection(tuple, projectionElements);
origin: org.openrdf.sesame/sesame-queryparser-sparql

result = new MultiProjection(result, projList);
origin: com.mysema.rdf/rdfbean-sesame3

  tuple = new Projection(tuple, projection);
} else if (!projectionElements.isEmpty()) {
  tuple = new MultiProjection(tuple, projectionElements);
origin: com.mysema.rdf/rdfbean-sesame2

  tuple = new Projection(tuple, projection);
} else if (!projectionElements.isEmpty()) {
  tuple = new MultiProjection(tuple, projectionElements);
origin: org.openrdf.sesame/sesame-queryparser-sparql

result = new MultiProjection(result, projections);
origin: org.openrdf.sesame/sesame-queryparser-serql

result = new MultiProjection(result, projections);
origin: org.openrdf.sesame/sesame-queryrender

private UnaryTupleOperator multiProjection() {
  MultiProjection aProjection = new MultiProjection();
org.openrdf.query.algebraMultiProjection<init>

Popular methods of MultiProjection

  • getProjections
  • getArg
  • addProjection
  • setProjections
  • addProjections
  • getParentNode
  • replaceNodeInList
  • replaceWith
  • setArg
  • visitChildren

Popular in Java

  • Creating JSON documents from java classes using gson
  • getExternalFilesDir (Context)
  • setContentView (Activity)
  • scheduleAtFixedRate (Timer)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now