Class: Xberg::CsvMetadata
- Inherits:
-
Object
- Object
- Xberg::CsvMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#column_count ⇒ Integer
readonly
Returns the value of attribute column_count.
-
#column_types ⇒ Array[String]?
readonly
Returns the value of attribute column_types.
-
#delimiter ⇒ String?
readonly
Returns the value of attribute delimiter.
-
#has_header ⇒ Boolean
readonly
Returns the value of attribute has_header.
-
#row_count ⇒ Integer
readonly
Returns the value of attribute row_count.
Instance Method Summary collapse
-
#initialize ⇒ CsvMetadata
constructor
A new instance of CsvMetadata.
Constructor Details
#initialize ⇒ CsvMetadata
Returns a new instance of CsvMetadata.
454 |
# File 'sig/types.rbs', line 454 def initialize: (?row_count: Integer, ?column_count: Integer, ?delimiter: String, ?has_header: bool, ?column_types: Array[String]) -> void |
Instance Attribute Details
#column_count ⇒ Integer (readonly)
Returns the value of attribute column_count.
449 450 451 |
# File 'sig/types.rbs', line 449 def column_count @column_count end |
#column_types ⇒ Array[String]? (readonly)
Returns the value of attribute column_types.
452 453 454 |
# File 'sig/types.rbs', line 452 def column_types @column_types end |
#delimiter ⇒ String? (readonly)
Returns the value of attribute delimiter.
450 451 452 |
# File 'sig/types.rbs', line 450 def delimiter @delimiter end |
#has_header ⇒ Boolean (readonly)
Returns the value of attribute has_header.
451 452 453 |
# File 'sig/types.rbs', line 451 def has_header @has_header end |
#row_count ⇒ Integer (readonly)
Returns the value of attribute row_count.
448 449 450 |
# File 'sig/types.rbs', line 448 def row_count @row_count end |