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)


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

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

Instance Attribute Details

#abbreviationString, NilClass (readonly)

Returns:

  • (String, NilClass)


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

def abbreviation
  @abbreviation
end

#valueString (readonly)

Returns:

  • (String)


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

def value
  @value
end

Instance Method Details

#to_hashHash

Returns:

  • (Hash)


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

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

#to_xml(builder) ⇒ Object

Parameters:

  • (Nokogiri::XML::Builder)


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

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