Interface SymbolPropertyTableIterator
-
- All Known Implementing Classes:
AAindexStreamReader
public interface SymbolPropertyTableIterator
Iterator overSymbolPropertyTable
objects.- Version:
- $Revision$
- Author:
- Martin Szugat
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasNext()
Checks if there is a furtherSymbolPropertyTable
object.SymbolPropertyTable
nextTable()
Returns the nextSymbolPropertyTable
object.
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Checks if there is a furtherSymbolPropertyTable
object.- Returns:
true
if a call to thenextTable()
method is valid,false
otherwise.
-
nextTable
SymbolPropertyTable nextTable() throws NoSuchElementException, BioException
Returns the nextSymbolPropertyTable
object.- Returns:
- a symbol property table
- Throws:
NoSuchElementException
- if there is no further symbol property table.BioException
- if the next symbol property table could not be retrieved.
-
-