Class: Xberg::BibtexMetadata
- Inherits:
-
Object
- Object
- Xberg::BibtexMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#authors ⇒ Array[String]
readonly
Returns the value of attribute authors.
-
#citation_keys ⇒ Array[String]
readonly
Returns the value of attribute citation_keys.
-
#entry_count ⇒ Integer
readonly
Returns the value of attribute entry_count.
-
#entry_types ⇒ Hash[String, Integer]?
readonly
Returns the value of attribute entry_types.
-
#year_range ⇒ YearRange?
readonly
Returns the value of attribute year_range.
Instance Method Summary collapse
-
#initialize ⇒ BibtexMetadata
constructor
A new instance of BibtexMetadata.
Constructor Details
#initialize ⇒ BibtexMetadata
Returns a new instance of BibtexMetadata.
82 |
# File 'sig/types.rbs', line 82
def initialize: (?entry_count: Integer, ?citation_keys: Array[String], ?authors: Array[String], ?year_range: YearRange, ?entry_types: Hash[String, Integer]) -> void
|
Instance Attribute Details
#authors ⇒ Array[String] (readonly)
Returns the value of attribute authors.
78 79 80 |
# File 'sig/types.rbs', line 78 def @authors end |
#citation_keys ⇒ Array[String] (readonly)
Returns the value of attribute citation_keys.
77 78 79 |
# File 'sig/types.rbs', line 77 def citation_keys @citation_keys end |
#entry_count ⇒ Integer (readonly)
Returns the value of attribute entry_count.
76 77 78 |
# File 'sig/types.rbs', line 76 def entry_count @entry_count end |
#entry_types ⇒ Hash[String, Integer]? (readonly)
Returns the value of attribute entry_types.
80 81 82 |
# File 'sig/types.rbs', line 80 def entry_types @entry_types end |
#year_range ⇒ YearRange? (readonly)
Returns the value of attribute year_range.
79 80 81 |
# File 'sig/types.rbs', line 79 def year_range @year_range end |