velosurf.sql
Interface ReadOnlyMap
- All Known Implementing Classes:
- DBReference, ExternalObjectWrapper, Instance, PooledPreparedStatement, PooledStatement, ReadOnlyWrapper, RowIterator, Velosurf, VelosurfTool
public interface ReadOnlyMap
This interface represents objects having read-only properties
- Author:
- Claude Brisson
|
Method Summary |
java.lang.Object |
get(java.lang.Object key)
get the property named key |
java.util.Set |
keySet()
|
get
java.lang.Object get(java.lang.Object key)
throws java.sql.SQLException
- get the property named key
- Parameters:
key - the name of the property to return
- Returns:
- the value of the property, or null if not found
- Throws:
java.sql.SQLException - when thrown by the database engine
keySet
java.util.Set keySet()
throws java.sql.SQLException
- Throws:
java.sql.SQLException
~ooOoo~