/**
* @return A sorted copy of the Record list
*/
private List<Record> copyAndSort(final Table table, Iterable<Record> records, Comparator<Record> comparator) {
// we need to transform the records to RecordBeans so we don't re-use the Record
return FluentIterable.from(records)
.transform(r -> RecordHelper.copy(r, table.columns()))
.toSortedList(comparator);
}
TableDataHomology.java 文件源码
java
阅读 41
收藏 0
点赞 0
评论 0
项目:morf
作者:
评论列表
文章目录