Class: RelatonBib::DocumentStatus::Stage

Inherits:
Object
  • Object
show all
Defined in:
lib/relaton_bib/document_status.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value:, abbreviation: nil) ⇒ Stage

Returns a new instance of Stage.

Parameters:

  • abbreviation (String, NilClass) (defaults to: nil)


63
64
65
66
# File 'lib/relaton_bib/document_status.rb', line 63

def initialize(value:, abbreviation: nil)
  @value = value
  @abbreviation = abbreviation
end

Instance Attribute Details

#abbreviationString, NilClass (readonly)

Returns:

  • (String, NilClass)


59
60
61
# File 'lib/relaton_bib/document_status.rb', line 59

def abbreviation
  @abbreviation
end

#valueString (readonly)

Returns:

  • (String)


56
57
58
# File 'lib/relaton_bib/document_status.rb', line 56

def value
  @value
end

Instance Method Details

#to_hashHash

Returns:

  • (Hash)


75
76
77
78
79
# File 'lib/relaton_bib/document_status.rb', line 75

def to_hash
  hash = { "value" => value }
  hash["abbreviation"] = abbreviation if abbreviation
  hash
end

#to_xml(builder) ⇒ Object

Parameters:

  • (Nokogiri::XML::Builder)


69
70
71
72
# File 'lib/relaton_bib/document_status.rb', line 69

def to_xml(builder)
  builder.parent[:abbreviation] = abbreviation if abbreviation
  builder.text value
end