Uses of Class
cloud.opencode.base.csv.query.CsvQuery
Packages that use CsvQuery
-
Uses of CsvQuery in cloud.opencode.base.csv
Methods in cloud.opencode.base.csv that return CsvQueryModifier and TypeMethodDescriptionstatic CsvQueryOpenCsv.query(CsvDocument doc) Creates a fluent query from a CSV document 从CSV文档创建流式查询 -
Uses of CsvQuery in cloud.opencode.base.csv.query
Methods in cloud.opencode.base.csv.query that return CsvQueryModifier and TypeMethodDescriptionCsvQuery.distinct()Removes duplicate rows (comparing all field values) 移除重复行(比较所有字段值)Removes duplicate rows based on specific columns 基于特定列移除重复行static CsvQueryCsvQuery.from(CsvDocument doc) Creates a query from a CsvDocument 从CsvDocument创建查询CsvQuery.limit(int maxRows) Limits the number of result rows 限制结果行数CsvQuery.offset(int skipRows) Skips the first N rows of the result 跳过结果的前N行Sorts rows by a column using natural string ordering 按列使用自然字符串排序对行排序CsvQuery.orderBy(String column, Comparator<String> comparator) Sorts rows by a column using a custom comparator 按列使用自定义比较器对行排序Selects specific columns by header name 按标题名选择特定列Filters rows by a predicate 按谓词过滤行