Interface SymbolPropertyTableDB
-
- All Known Implementing Classes:
SimpleSymbolPropertyTableDB
public interface SymbolPropertyTableDBDatabase ofSymbolPropertyTableobjects.- Version:
- $Revision: 3602 $
- Author:
- Martin Szugat
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Setnames()Returns the set of unique table names.intnumTables()Returns the number of symbol property tables in the database.SymbolPropertyTabletable(java.lang.String name)Returns the table with the specified name.SymbolPropertyTableIteratortableIterator()Returns an iterator overSymbolPropertyTableobjects.
-
-
-
Method Detail
-
tableIterator
SymbolPropertyTableIterator tableIterator()
Returns an iterator overSymbolPropertyTableobjects.- Returns:
- a new iterator
-
numTables
int numTables()
Returns the number of symbol property tables in the database.- Returns:
- the number of tables
-
names
java.util.Set names()
Returns the set of unique table names.- Returns:
- a set containing strings
-
table
SymbolPropertyTable table(java.lang.String name) throws IllegalIDException, java.lang.NullPointerException
Returns the table with the specified name.- Parameters:
name- the name of the table- Returns:
- the specified table
- Throws:
IllegalIDException- if no symbol property table with the specified name could be found.java.lang.NullPointerException- ifnameisnull.
-
-