Package com.mchange.v1.util
Class WrapperUIterator
- java.lang.Object
-
- com.mchange.v1.util.WrapperUIterator
-
- All Implemented Interfaces:
ClosableResource,UIterator
public abstract class WrapperUIterator extends java.lang.Object implements UIterator
This implementation does not yet support removes once hasNext() has been called... will add if necessary.
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.ObjectSKIP_TOKEN
-
Constructor Summary
Constructors Constructor Description WrapperUIterator(UIterator inner)WrapperUIterator(UIterator inner, boolean supports_remove)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidclose()forces the release of any resources that might be associated with this object.booleanhasNext()java.lang.Objectnext()voidremove()protected abstract java.lang.ObjecttransformObject(java.lang.Object o)return SKIP_TOKEN to indicate an object should be skipped, i.e., not exposed as part of the iterator.
-
-
-
Method Detail
-
hasNext
public boolean hasNext() throws java.lang.Exception
-
next
public java.lang.Object next() throws java.util.NoSuchElementException, java.lang.Exception
-
remove
public void remove() throws java.lang.Exception
-
close
public void close() throws java.lang.ExceptionDescription copied from interface:ClosableResourceforces the release of any resources that might be associated with this object.- Specified by:
closein interfaceClosableResource- Specified by:
closein interfaceUIterator- Throws:
java.lang.Exception
-
transformObject
protected abstract java.lang.Object transformObject(java.lang.Object o) throws java.lang.Exceptionreturn SKIP_TOKEN to indicate an object should be skipped, i.e., not exposed as part of the iterator. (we don't use null, because we want to support iterators over null-accepting Collections.)- Throws:
java.lang.Exception
-
-