639640641642643644645
* @param booleanResult The boolean result to encode */ static public void outputAsSSE(OutputStream outStream, boolean booleanResult) { throw new ARQNotImplemented("outputAsSSE") ; }
676677678679680681682
* @param prologue */ static public void outputAsSSE(OutputStream outStream, ResultSet resultSet, Prologue prologue) { throw new ARQNotImplemented("outputAsSSE") ; }
321322323324325326327
protected QueryIterator execute(OpDatasetNames dsNames, QueryIterator input) { if (false) { OpGraph op = new OpGraph(dsNames.getGraphNode(), new OpBGP()) ; return execute(op, input) ; } throw new ARQNotImplemented("execute/OpDatasetNames") ; }
144145146147148149
public void visit(OpTriple opTriple) { currentGroup().addElement(process(opTriple.getTriple())) ; } @Override public void visit(OpQuad opQuad) { throw new ARQNotImplemented("OpQuad") ; }
150151152153154155156
@Override public void visit(OpProcedure opProcedure) { throw new ARQNotImplemented("OpProcedure") ; }
207208209210211212213
} @Override public void visit(OpDisjunction opDisjunction) { throw new ARQNotImplemented("OpDisjunction") ; }
329330331332333334
g.addElement(opt) ; } @Override public void visit(OpDiff opDiff) { throw new ARQNotImplemented("OpDiff") ; }
369370371372373374
currentGroup().addElement(elUnion) ; } @Override public void visit(OpConditional opCondition) { throw new ARQNotImplemented("OpCondition") ; }
419420421422423424
currentGroup().addElement(elt) ; } @Override public void visit(OpDatasetNames dsNames) { throw new ARQNotImplemented("OpDatasetNames") ; }
445446447448449450451
public void visit(OpExt opExt) { // Op op = opExt.effectiveOp() ; // // This does not work in all cases. // op.visit(this) ; throw new ARQNotImplemented("OpExt") ; }