Class: Xberg::CsvMetadata
- Inherits:
-
Object
- Object
- Xberg::CsvMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#column_count ⇒ Integer?
Returns the value of attribute column_count.
-
#column_types ⇒ Array[String]?
Returns the value of attribute column_types.
-
#delimiter ⇒ String?
Returns the value of attribute delimiter.
-
#has_header ⇒ Boolean?
Returns the value of attribute has_header.
-
#row_count ⇒ Integer?
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.
1461 |
# File 'sig/types.rbs', line 1461
def initialize: (?row_count: Integer, ?column_count: Integer, ?delimiter: String, ?has_header: bool, ?column_types: Array[String]) -> void
|
Instance Attribute Details
#column_count ⇒ Integer?
Returns the value of attribute column_count.
1456 1457 1458 |
# File 'sig/types.rbs', line 1456 def column_count @column_count end |
#column_types ⇒ Array[String]?
Returns the value of attribute column_types.
1459 1460 1461 |
# File 'sig/types.rbs', line 1459 def column_types @column_types end |
#delimiter ⇒ String?
Returns the value of attribute delimiter.
1457 1458 1459 |
# File 'sig/types.rbs', line 1457 def delimiter @delimiter end |
#has_header ⇒ Boolean?
Returns the value of attribute has_header.
1458 1459 1460 |
# File 'sig/types.rbs', line 1458 def has_header @has_header end |
#row_count ⇒ Integer?
Returns the value of attribute row_count.
1455 1456 1457 |
# File 'sig/types.rbs', line 1455 def row_count @row_count end |