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.
1359 |
# File 'sig/types.rbs', line 1359
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.
1356 1357 1358 |
# File 'sig/types.rbs', line 1356 def character_count @character_count end |
#headers ⇒ Array[String]?
Returns the value of attribute headers.
1357 1358 1359 |
# File 'sig/types.rbs', line 1357 def headers @headers end |
#line_count ⇒ Integer?
Returns the value of attribute line_count.
1354 1355 1356 |
# File 'sig/types.rbs', line 1354 def line_count @line_count end |
#word_count ⇒ Integer?
Returns the value of attribute word_count.
1355 1356 1357 |
# File 'sig/types.rbs', line 1355 def word_count @word_count end |