/**
* Get List of records of response.
*
* @param response
* @return
*/
private List<T> getList(HttpResponse<Records> response) {
final Records records = response.getBody();
final List<T> list = new ArrayList<>();
for (Map<String, Object> record : records.getRecords()) {
T item = null;
try {
item = transform(record, this.type.newInstance());
} catch (InstantiationException | IllegalAccessException | InvocationTargetException e) {
LOG.error(e.getMessage(), e);
}
list.add(item);
}
return list;
}
Table.java 文件源码
java
阅读 29
收藏 0
点赞 0
评论 0
项目:airtable.java
作者:
评论列表
文章目录