Interface SymbolPropertyTableIterator
-
- All Known Implementing Classes:
AAindexStreamReader
public interface SymbolPropertyTableIterator
Iterator overSymbolPropertyTableobjects.- Version:
- $Revision$
- Author:
- Martin Szugat
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Checks if there is a furtherSymbolPropertyTableobject.SymbolPropertyTablenextTable()Returns the nextSymbolPropertyTableobject.
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Checks if there is a furtherSymbolPropertyTableobject.- Returns:
trueif a call to thenextTable()method is valid,falseotherwise.
-
nextTable
SymbolPropertyTable nextTable() throws NoSuchElementException, BioException
Returns the nextSymbolPropertyTableobject.- 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.
-
-