CsvInput

class CsvInput

Describes how an uncompressed comma-separated values (CSV)-formatted input object is formatted.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.

Link copied to clipboard

A single character used to indicate that a row should be ignored when the character is present at the start of that row. You can specify any character to indicate a comment line. The default character is #.

Link copied to clipboard

A single character used to separate individual fields in a record. You can specify an arbitrary delimiter.

Link copied to clipboard

Describes the first line of input. Valid values are:

Link copied to clipboard

A single character used for escaping when the field delimiter is part of the value. For example, if the value is a, b, Amazon S3 wraps this field value in quotation marks, as follows: " a , b ".

Link copied to clipboard

A single character used for escaping the quotation mark character inside an already escaped value. For example, the value """ a , b """ is parsed as " a , b ".

Link copied to clipboard

A single character used to separate individual records in the input. Instead of the default value, you can specify an arbitrary delimiter.

Functions

Link copied to clipboard
inline fun copy(block: CsvInput.Builder.() -> Unit = {}): CsvInput
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String