Package jcifs
Class EmptyIterator
- java.lang.Object
-
- jcifs.EmptyIterator
-
- All Implemented Interfaces:
AutoCloseable,Iterator<SmbResource>,CloseableIterator<SmbResource>
public class EmptyIterator extends Object implements CloseableIterator<SmbResource>
- Author:
- mbechler
-
-
Constructor Summary
Constructors Constructor Description EmptyIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanhasNext()SmbResourcenext()voidremove()-
Methods 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
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<SmbResource>- See Also:
Iterator.hasNext()
-
next
public SmbResource next()
- Specified by:
nextin interfaceIterator<SmbResource>- See Also:
Iterator.next()
-
close
public void close() throws CIFSException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseableIterator<SmbResource>- Throws:
CIFSException- See Also:
CloseableIterator.close()
-
remove
public void remove()
- Specified by:
removein interfaceIterator<SmbResource>- See Also:
Iterator.remove()
-
-