Package oracle.webcenter.search.util
Class WrapperQueryResult<T>
java.lang.Object
oracle.webcenter.search.util.WrapperQueryResult<T>
- All Implemented Interfaces:
Iterator<T>
,QueryResult<T>
Base class that allows for implementors of the Search API to build
their QueryResult classes more easily. This assumes some conversion from
an Iterator of some source class to an Iterator of a target class
- Since:
- 11.1.1.0.0 Beta 2
-
Field Summary
Fields inherited from interface oracle.webcenter.search.QueryResult
ESTIMATED_RESULT_COUNT, RESPONSE_TIME
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDefault implementation of the getProperties to subclasses to not have to implement this directly.boolean
hasNext()
Wrapped implementation of the Iterator.hasNext method.next()
Wrapped implementation of the Iterator.next method.void
remove()
To prohibit callers from removing entries in the Iterator, this method always throws an Exception that "remove" is not supportedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
WrapperQueryResult
Only called by subclasses.- Parameters:
target
- the source iterator of type T
-
-
Method Details
-
getProperties
Default implementation of the getProperties to subclasses to not have to implement this directly.- Specified by:
getProperties
in interfaceQueryResult<T>
- Returns:
- a Map of String keys and String values holding properties of the QueryResult.
-
hasNext
public boolean hasNext()Wrapped implementation of the Iterator.hasNext method. -
next
Wrapped implementation of the Iterator.next method. -
remove
public void remove()To prohibit callers from removing entries in the Iterator, this method always throws an Exception that "remove" is not supported
-