Class VersionExtended.LoadedLibIterator
- java.lang.Object
-
- org.apache.subversion.javahl.types.VersionExtended.LoadedLibIterator
-
- All Implemented Interfaces:
java.util.Iterator<VersionExtended.LoadedLib>
- Enclosing class:
- VersionExtended
private class VersionExtended.LoadedLibIterator extends java.lang.Object implements java.util.Iterator<VersionExtended.LoadedLib>
Iterator for #LoadedLib.
-
-
Field Summary
Fields Modifier and Type Field Description private int
index
private VersionExtended
wrapper
-
Constructor Summary
Constructors Constructor Description LoadedLibIterator(VersionExtended wrapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Implementation of java.util.Iterator#hasNext().VersionExtended.LoadedLib
next()
Implementation of java.util.Iterator#next().void
remove()
Implementation of java.util.Iterator#remove().
-
-
-
Field Detail
-
wrapper
private final VersionExtended wrapper
-
index
private int index
-
-
Constructor Detail
-
LoadedLibIterator
public LoadedLibIterator(VersionExtended wrapper)
-
-
Method Detail
-
hasNext
public boolean hasNext()
Implementation of java.util.Iterator#hasNext().- Specified by:
hasNext
in interfacejava.util.Iterator<VersionExtended.LoadedLib>
- Returns:
- #true if next() can be called safely.
-
next
public VersionExtended.LoadedLib next()
Implementation of java.util.Iterator#next().- Specified by:
next
in interfacejava.util.Iterator<VersionExtended.LoadedLib>
- Returns:
- The next element of the sequence.
-
remove
public void remove()
Implementation of java.util.Iterator#remove().- Specified by:
remove
in interfacejava.util.Iterator<VersionExtended.LoadedLib>
-
-