|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.hypergraphdb.query.impl.UnionResult
public class UnionResult
Combines two result set into a result representing their set theoretic union. It
is assumed that the input sets are ordered and hence that the objects contained
therein are java.lang.Comparable instances.
The produced result set also has its elements in order.
| Field Summary |
|---|
| Fields inherited from interface org.hypergraphdb.HGSearchResult |
|---|
EMPTY |
| Constructor Summary | |
|---|---|
UnionResult(HGSearchResult left,
HGSearchResult right)
|
|
| Method Summary | |
|---|---|
void |
close()
Free all system resources held up by the result set and invalidate it for further use. |
java.lang.Object |
current()
Returns the current element in the result set. |
boolean |
hasNext()
|
boolean |
hasPrev()
Return true if there is a previous element in the current
iteration state and false otherwise. |
boolean |
isOrdered()
Return true if the elements in this search result are in ordered
and false otherwise. |
java.lang.Object |
next()
|
java.lang.Object |
prev()
Returns the previous element in this iteration. |
void |
remove()
|
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public UnionResult(HGSearchResult left,
HGSearchResult right)
| Method Detail |
|---|
public java.lang.Object current()
HGSearchResultReturns the current element in the result set. If there is no current element,
java.util.NoSuchElementException is thrown. There
is no current element in one of two cases: either the
result set is empty or the next method was never
invoked.
current in interface HGSearchResultHGSearchResult.public void close()
HGSearchResultFree all system resources held up by the result set and invalidate it for further use.
close in interface HGSearchResultclose in interface CloseMepublic java.lang.Object prev()
TwoWayIteratorReturns the previous element in this iteration.
prev in interface TwoWayIteratorpublic boolean hasPrev()
TwoWayIterator
Return true if there is a previous element in the current
iteration state and false otherwise. After the iterator
has been initialized, the value of hasPrev will always be
false.
hasPrev in interface TwoWayIteratorpublic boolean hasNext()
hasNext in interface java.util.Iteratorpublic java.lang.Object next()
next in interface java.util.Iteratorpublic void remove()
remove in interface java.util.Iteratorpublic boolean isOrdered()
HGSearchResultReturn true if the elements in this search result are in ordered
and false otherwise. It is assumed that when elements are ordered,
they are instances of java.lang.Comparable
isOrdered in interface HGSearchResult
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||