public Func2<AppReport, AppReport, Integer> getSortingFunction(SortBy sortBy) {
switch (sortBy) {
case NAME:
return new SortByName();
case LIBRARY_COUNT:
return new SortByLibraryCount();
case ANALYZED_AT:
return new SortByAnalyzedAt();
case PERMISSION_COUNT:
return new SortByPermissionCount();
default:
throw new IllegalArgumentException("no sorting function for %s " + sortBy);
}
}
AppService.java 文件源码
java
阅读 30
收藏 0
点赞 0
评论 0
项目:disclosure-android-app
作者:
评论列表
文章目录