Package org.apache.jena.sparql.algebra
Interface Table
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addBinding(Binding binding)
void
close()
boolean
contains(Binding binding)
java.util.List<java.lang.String>
getVarNames()
java.util.List<Var>
getVars()
boolean
isEmpty()
QueryIterator
iterator(ExecutionContext execCxt)
Return a QueryIterator over the whole table.java.util.Iterator<Binding>
rows()
Return a fresh iterator over the whole table.int
size()
RowSet
toRowSet()
-
-
-
Method Detail
-
close
void close()
-
getVars
java.util.List<Var> getVars()
-
getVarNames
java.util.List<java.lang.String> getVarNames()
-
size
int size()
-
isEmpty
boolean isEmpty()
-
iterator
QueryIterator iterator(ExecutionContext execCxt)
Return a QueryIterator over the whole table.
-
rows
java.util.Iterator<Binding> rows()
Return a fresh iterator over the whole table.
-
addBinding
void addBinding(Binding binding)
-
contains
boolean contains(Binding binding)
-
toRowSet
RowSet toRowSet()
-
-