velosurf.sql
Interface RowHandler

All Known Implementing Classes:
PooledPreparedStatement, PooledSimpleStatement, PooledStatement, RowIterator

public interface RowHandler

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<java.lang.String> keySet()
          Get keys set.
 

Method Detail

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

keySet

java.util.Set<java.lang.String> keySet()
                                       throws java.sql.SQLException
Get keys set.

Returns:
keys set
Throws:
java.sql.SQLException


~ooOoo~