CSVInput class

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

Constructors

CSVInput(bool? allowQuotedRecordDelimiter, String? comments, String? fieldDelimiter, String? fileHeaderInfo, String? quoteCharacter, String? quoteEscapeCharacter, String? recordDelimiter)
CSVInput.fromXml(XmlElement? xml)

Properties

allowQuotedRecordDelimiter bool?
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.
getter/setter pair
comments String?
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.
getter/setter pair
fieldDelimiter String?
A single character used to separate individual fields in a record. You can specify an arbitrary delimiter.
getter/setter pair
fileHeaderInfo String?
Describes the first line of input. Valid values are:
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
quoteCharacter String?
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 ".
getter/setter pair
quoteEscapeCharacter String?
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 ".
getter/setter pair
recordDelimiter String?
A single character used to separate individual records in the input. Instead of the default value, you can specify an arbitrary delimiter.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
toXml() → XmlNode

Operators

operator ==(Object other) bool
The equality operator.
inherited