File tree Expand file tree Collapse file tree
src/main/java/io/frictionlessdata/datapackage/resource Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public interface Resource<T,C> {
5050 *
5151 * The method can be configured to return table rows as:
5252 * <ul>
53- * <li>String arrays</li>
53+ * <li>String arrays (parameter `cast` = false) </li>
5454 * <li>as Object arrays (parameter `cast` = true)</li>
5555 * <li>as a Map<key,val> where key is the header name, and val is the data (parameter `keyed` = true)</li>
5656 * <li>in an "extended" form (parameter `extended` = true) that returns an Object array where the first entry
@@ -81,7 +81,7 @@ public interface Resource<T,C> {
8181 * It therefore disregards the Schema set on the {@link io.frictionlessdata.tableschema.Table} the iterator works
8282 * on but creates its own Schema from the supplied `beanType`.
8383 *
84- * @return Iterator that returns rows as bean-arrays .
84+ * @return List of rows as bean instances .
8585 * @param beanClass the Bean class this BeanIterator expects
8686 */
8787 List <C > getData (Class <C > beanClass ) throws Exception ;
You can’t perform that action at this time.
0 commit comments