org.axiondb.engine.rowiterators |
Package Documentation for org.axiondb.engine.rowiterators
{@link org.axiondb.RowIterator} implementations.
|
Java Source File Name | Type | Comment |
AbstractAcceptingRowIterator.java | Class | Abstract base
DelegatingRowIterator that excludes
Row s that are not
AbstractAcceptingRowIterator.acceptable acceptable . |
AbstractFilteringRowIterator.java | Class | |
AbstractJoinedRowIterator.java | Class | |
AbstractRowIteratorTest.java | Class | |
BaseRowIterator.java | Class | An abstract base implementation of
RowIterator . |
ChainedRowIterator.java | Class | Chains together one or more
RowIterator s to make them look like one (similiar
to a SQL UNION). |
ChangingIndexedRowIterator.java | Class | A
DelegatingRowIterator that is wraps a
org.axiondb.RowIterator from
some
Index , and that can be
ChangingIndexedRowIterator.reset reset to recreate the iterator for
a new
BindVariable bound value . |
CollatingRowIterator.java | Class | Collates the results of two or more sorted
RowIterator s according to the given
RowComparator . |
DelegatingRowIterator.java | Class | An abstract base
RowIterator that delegates all calls to a wrapped instance. |
DistinctRowIterator.java | Class | A
DelegatingRowIterator implementing DISTINCT. |
EmptyRowIterator.java | Class | A
RowIterator that contains no
Row s. |
FilteringChangingIndexedRowIterator.java | Class | |
FilteringRowIterator.java | Class | A
DelegatingRowIterator that only returns
Row s
that match a given
WhereNode . |
GroupedRowIterator.java | Class | Processes a "raw" iterator to implement GROUP BY functionality. |
IndexNestedLoopJoinedRowIterator.java | Class | The Index Nested Loop Join or Augmented Nested Loop Join (ANL) is by far the most
common join method and is the classic Axion join method. |
JoinRowIterator.java | Class | A
RowIterator that simply wraps a
ListIterator . |
LazyRowRowIterator.java | Class | A
org.axiondb.RowIterator that creates
LazyRow s based upon a list of
Row identifiers. |
LimitingRowIterator.java | Class | RowIterator implementing LIMIT and OFFSET. |
ListIteratorRowIterator.java | Class | A
RowIterator that simply wraps a
ListIterator . |
ListRowIterator.java | Class | A
RowIterator that for a given
java.util.List . |
MutableIndexedRowIterator.java | Interface | |
NestedLoopJoinedRowIterator.java | Class | A Nested Loop Join is performed by doing a scan over the left subtree and for each row
in it performing a full scan of the right subtree. |
RebindableIndexedRowIterator.java | Class | A
DelegatingRowIterator that is wraps
a
org.axiondb.RowIterator from some
Index ,
and that can be
RebindableIndexedRowIterator.reset reset to recreate the iterator
for a new
BindVariable bound value . |
ReverseSortedRowIterator.java | Class | Reverse a SortedRowIterator. |
RowIteratorRowDecoratorIterator.java | Class | A
RowDecoratorIterator based upon some
RowDecorator decorator and
RowIterator . |
RowViewRowIterator.java | Class | A
org.axiondb.RowIterator that creates
RowView s based upon selected
Row identifiers. |
SingleRowIterator.java | Class | A
RowIterator over a single
Row . |
SortedRowIterator.java | Class | |
TestAll.java | Class | |
TestChainedRowIterator.java | Class | |
TestChangingIndexedRowIterator.java | Class | |
TestCollatingRowIterator.java | Class | |
TestDelegatingRowIterator.java | Class | |
TestDistinctRowIterator.java | Class | |
TestEmptyRowIterator.java | Class | |
TestFilteringChangingIndexedRowIterator.java | Class | |
TestFilteringRowIterator.java | Class | |
TestGroupedRowIterator.java | Class | |
TestIndexNestedLoopJoinedRowIterator_InnerJoinCase.java | Class | |
TestIndexNestedLoopJoinedRowIterator_LeftOuterJoinCase.java | Class | |
TestIndexNestedLoopJoinedRowIterator_OuterJoinWithAdditionalCriteriaCase.java | Class | |
TestIndexNestedLoopJoinedRowIterator_RightOuterJoinCase.java | Class | |
TestIntRowMapValuesRowIterator.java | Class | |
TestJoinRowIterator.java | Class | |
TestLazyRowRowIterator.java | Class | |
TestLimitingRowIterator.java | Class | |
TestListIteratorRowIterator.java | Class | |
TestListRowIterator.java | Class | |
TestMutableSortedRowIterator.java | Class | JUnit test case for SortedRowIterator implementation (MutableMergeSort). |
TestNestedLoopJoinedRowIterator.java | Class | |
TestNestedLoopJoinedRowIterator_CrossProductCase.java | Class | |
TestNestedLoopJoinedRowIterator_IndexedCrossProductCase.java | Class | |
TestNestedLoopJoinedRowIterator_IndexedInnerJoinCase.java | Class | |
TestNestedLoopJoinedRowIterator_IndexedLeftOuterJoinCase.java | Class | |
TestNestedLoopJoinedRowIterator_IndexedRightOuterJoinCase.java | Class | |
TestNestedLoopJoinedRowIterator_InnerJoinCase.java | Class | |
TestNestedLoopJoinedRowIterator_LeftOuterJoinCase1.java | Class | |
TestNestedLoopJoinedRowIterator_LeftOuterJoinCase2.java | Class | |
TestNestedLoopJoinedRowIterator_RightOuterJoinCase.java | Class | |
TestRebindableIndexedRowIterator.java | Class | |
TestReverseSortedRowIterator.java | Class | |
TestRowIteratorRowDecoratorIterator.java | Class | |
TestRowViewRowIterator.java | Class | |
TestSingleRowIterator.java | Class | |
TestSortedRowIterator.java | Class | |
TestTransformingRowIterator.java | Class | |
TestUnmodifiableRowIterator.java | Class | |
TransformingRowIterator.java | Class | A
DelegatingRowIterator that
TransformingRowIterator.transform transforms each returned
Row . |
UnmodifiableRowIterator.java | Class | |