Class: RelatonBib::PersonIdentifier
- Inherits:
-
Object
- Object
- RelatonBib::PersonIdentifier
- Defined in:
- lib/relaton_bib/person.rb
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_hash ⇒ Hash
- #to_xml(builder) ⇒ Object
Constructor Details
#initialize(type, value) ⇒ PersonIdentifier
Returns a new instance of PersonIdentifier.
107 108 109 110 111 112 |
# File 'lib/relaton_bib/person.rb', line 107 def initialize(type, value) PersonIdentifierType.check type @type = type @value = value end |
Instance Attribute Details
#type ⇒ RelatonBib::PersonIdentifierType::ISNI, RelatonBib::PersonIdentifierType::URI
100 101 102 |
# File 'lib/relaton_bib/person.rb', line 100 def type @type end |
#value ⇒ String
103 104 105 |
# File 'lib/relaton_bib/person.rb', line 103 def value @value end |
Instance Method Details
#to_hash ⇒ Hash
120 121 122 |
# File 'lib/relaton_bib/person.rb', line 120 def to_hash { type: type, id: value } end |
#to_xml(builder) ⇒ Object
115 116 117 |
# File 'lib/relaton_bib/person.rb', line 115 def to_xml(builder) builder.identifier value, type: type end |