Package | Description |
---|---|
PrologDB |
Modifier and Type | Method and Description |
---|---|
TupleList |
TupleList.addTuples(TupleList tl) |
TupleList |
TupleList.copy(TableSchema tableSchema)
copy tuple list by copying each tuple on the list and returning the
copied list.
|
TupleList |
Table.tuples()
return list of Tuples of this table and all of its subtables no
projection is done to ensure that all tuples have exactly and only the
columns of its parents.
|
TupleList |
Table.tuplesLocal()
return only the tuples of this table, and none of its subtables Generally
not used; tuples() is preferred
|
Modifier and Type | Method and Description |
---|---|
java.util.function.BiConsumer<TupleList,Tuple> |
toTable.accumulator() |
java.util.function.BinaryOperator<TupleList> |
toTable.combiner() |
java.util.function.Function<TupleList,Table> |
toTable.finisher() |
java.util.function.Supplier<TupleList> |
toTable.supplier() |
Modifier and Type | Method and Description |
---|---|
TupleList |
TupleList.addTuples(TupleList tl) |
Constructor and Description |
---|
Table(TableSchema schema,
TupleList tl)
most primitive table constructor
|
Table(Table table,
TupleList tl)
create an empty table using the schema of the given table
|