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.
1406 |
# File 'sig/types.rbs', line 1406
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.
1401 1402 1403 |
# File 'sig/types.rbs', line 1401 def column_count @column_count end |
#column_types ⇒ Array[String]?
Returns the value of attribute column_types.
1404 1405 1406 |
# File 'sig/types.rbs', line 1404 def column_types @column_types end |
#delimiter ⇒ String?
Returns the value of attribute delimiter.
1402 1403 1404 |
# File 'sig/types.rbs', line 1402 def delimiter @delimiter end |
#has_header ⇒ Boolean?
Returns the value of attribute has_header.
1403 1404 1405 |
# File 'sig/types.rbs', line 1403 def has_header @has_header end |
#row_count ⇒ Integer?
Returns the value of attribute row_count.
1400 1401 1402 |
# File 'sig/types.rbs', line 1400 def row_count @row_count end |