Uses of Class
cloud.opencode.base.csv.CsvRow
Packages that use CsvRow
Package
Description
CSV Streaming - Streaming CSV parsing and writing
CSV流 - 流式CSV解析和写入
-
Uses of CsvRow in cloud.opencode.base.csv
Methods in cloud.opencode.base.csv that return CsvRowModifier and TypeMethodDescriptionCsvDocument.getRow(int index) Gets a row by index 通过索引获取行static CsvRowCreates a row from field values with a specific row number 创建指定行号的字段值行static CsvRowCreates a row from a list of field values with a specific row number 从字段值列表创建指定行号的行static CsvRowCreates a row from field values with unknown row number 创建字段值行(行号未知)Methods in cloud.opencode.base.csv that return types with arguments of type CsvRowModifier and TypeMethodDescriptionCsvDocument.rows()Gets all rows 获取所有行CsvDocument.stream()Returns a stream of rows 返回行的流Methods in cloud.opencode.base.csv with parameters of type CsvRowModifier and TypeMethodDescriptionAdds an existing CsvRow 添加现有的CsvRow -
Uses of CsvRow in cloud.opencode.base.csv.diff
Methods in cloud.opencode.base.csv.diff that return CsvRowModifier and TypeMethodDescriptionCsvChange.newRow()Returns the value of thenewRowrecord component.CsvChange.oldRow()Returns the value of theoldRowrecord component.Constructors in cloud.opencode.base.csv.diff with parameters of type CsvRowModifierConstructorDescriptionCsvChange(CsvChange.ChangeType type, int rowIndex, CsvRow oldRow, CsvRow newRow) Creates an instance of aCsvChangerecord class. -
Uses of CsvRow in cloud.opencode.base.csv.query
Method parameters in cloud.opencode.base.csv.query with type arguments of type CsvRow -
Uses of CsvRow in cloud.opencode.base.csv.split
Method parameters in cloud.opencode.base.csv.split with type arguments of type CsvRowModifier and TypeMethodDescriptionstatic List<CsvDocument> CsvSplit.byCondition(CsvDocument doc, Predicate<CsvRow> predicate) Splits a document into two: rows matching the predicate, and rows not matching 将文档拆分为两部分:匹配谓词的行和不匹配的行 -
Uses of CsvRow in cloud.opencode.base.csv.stream
Classes in cloud.opencode.base.csv.stream that implement interfaces with type arguments of type CsvRowModifier and TypeClassDescriptionfinal classStreaming CSV Reader - Lazy Row-by-Row Parsing 流式 CSV 读取器 - 逐行懒加载解析Methods in cloud.opencode.base.csv.stream that return types with arguments of type CsvRowModifier and TypeMethodDescriptionCsvReader.iterator()Returns an Iterator over CsvRows.CsvReader.stream()Returns a Stream of CsvRows for functional-style processing.Methods in cloud.opencode.base.csv.stream with parameters of type CsvRow -
Uses of CsvRow in cloud.opencode.base.csv.transform
Method parameters in cloud.opencode.base.csv.transform with type arguments of type CsvRowModifier and TypeMethodDescriptionAdds a new column with values computed from each row 添加值由每行计算得出的新列CsvTransform.mapRows(UnaryOperator<CsvRow> mapper) Transforms entire rows 转换整行