Class: RelatonBib::PersonIdentifier
Overview
Person identifier.
Instance Attribute Summary collapse
- #type ⇒ RelatonBib::PersonIdentifierType::ISNI, RelatonBib::PersonIdentifierType::URI
- #value ⇒ String
Instance Method Summary collapse
-
#initialize(type, value) ⇒ PersonIdentifier
constructor
A new instance of PersonIdentifier.
- #to_asciibib(prefix = "", count = 1) ⇒ String
- #to_hash ⇒ Hash
- #to_xml(builder) ⇒ Object
Constructor Details
#initialize(type, value) ⇒ PersonIdentifier
Returns a new instance of PersonIdentifier.
120 121 122 123 124 125 |
# File 'lib/relaton_bib/person.rb', line 120 def initialize(type, value) PersonIdentifierType.check type @type = type @value = value end |
Instance Attribute Details
#type ⇒ RelatonBib::PersonIdentifierType::ISNI, RelatonBib::PersonIdentifierType::URI
112 113 114 |
# File 'lib/relaton_bib/person.rb', line 112 def type @type end |
#value ⇒ String
115 116 117 |
# File 'lib/relaton_bib/person.rb', line 115 def value @value end |
Instance Method Details
#to_asciibib(prefix = "", count = 1) ⇒ String
140 141 142 143 144 145 146 |
# File 'lib/relaton_bib/person.rb', line 140 def to_asciibib(prefix = "", count = 1) pref = prefix.empty? ? prefix : prefix + "." out = count > 1 ? "#{prefix}::\n" : "" out += "#{pref}type:: #{type}\n" out += "#{pref}value:: #{value}\n" out end |
#to_hash ⇒ Hash
133 134 135 |
# File 'lib/relaton_bib/person.rb', line 133 def to_hash { "type" => type, "id" => value } end |
#to_xml(builder) ⇒ Object
128 129 130 |
# File 'lib/relaton_bib/person.rb', line 128 def to_xml(builder) builder.identifier value, type: type end |