Class: Xberg::TextMetadata
- Inherits:
-
Object
- Object
- Xberg::TextMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#character_count ⇒ Integer?
Returns the value of attribute character_count.
-
#headers ⇒ Array[String]?
Returns the value of attribute headers.
-
#line_count ⇒ Integer?
Returns the value of attribute line_count.
-
#word_count ⇒ Integer?
Returns the value of attribute word_count.
Instance Method Summary collapse
-
#initialize ⇒ TextMetadata
constructor
A new instance of TextMetadata.
Constructor Details
#initialize ⇒ TextMetadata
Returns a new instance of TextMetadata.
1315 |
# File 'sig/types.rbs', line 1315
def initialize: (?line_count: Integer, ?word_count: Integer, ?character_count: Integer, ?headers: Array[String]) -> void
|
Instance Attribute Details
#character_count ⇒ Integer?
Returns the value of attribute character_count.
1312 1313 1314 |
# File 'sig/types.rbs', line 1312 def character_count @character_count end |
#headers ⇒ Array[String]?
Returns the value of attribute headers.
1313 1314 1315 |
# File 'sig/types.rbs', line 1313 def headers @headers end |
#line_count ⇒ Integer?
Returns the value of attribute line_count.
1310 1311 1312 |
# File 'sig/types.rbs', line 1310 def line_count @line_count end |
#word_count ⇒ Integer?
Returns the value of attribute word_count.
1311 1312 1313 |
# File 'sig/types.rbs', line 1311 def word_count @word_count end |