1 61 62 package org.apache.commons.dbutils; 63 64 import java.sql.ResultSet ; 65 import java.sql.SQLException ; 66 import java.util.List ; 67 import java.util.Map ; 68 69 78 public interface RowProcessor { 79 80 87 public Object [] toArray(ResultSet rs) throws SQLException ; 88 89 95 public Object toBean(ResultSet rs, Class type) throws SQLException ; 96 97 105 public List toBeanList(ResultSet rs, Class type) throws SQLException ; 106 107 114 public Map toMap(ResultSet rs) throws SQLException ; 115 116 } 117 | Popular Tags |