CSVInput class
Describes how an uncompressed comma-separated values (CSV)-formatted input object is formatted.
Constructors
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.
final
- 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.
final
- fieldDelimiter → String?
-
A single character used to separate individual fields in a record. You can
specify an arbitrary delimiter.
final
- fileHeaderInfo → FileHeaderInfo?
-
Describes the first line of input. Valid values are:
final
- 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 "
.final - 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 ".
final
- recordDelimiter → String?
-
A single character used to separate individual records in the input. Instead
of the default value, you can specify an arbitrary delimiter.
final
- 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(
String elemName, {List< XmlAttribute> ? attributes}) → XmlElement
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited