Class: Stupidedi::Reader::Separators

Inherits:
Object
  • Object
show all
Defined in:
lib/stupidedi/reader/separators.rb

Overview

Stores the separators used to tokenize X12 from an input stream and serialize it to an output stream.

See Also:

  • B.1.1.2.5 Delimiters

Instance Attribute Summary collapse

Constructors collapse

Instance Method Summary collapse

Constructor Details

#initialize(component, repetition, element, segment) ⇒ Separators

Returns a new instance of Separators.



28
29
30
31
# File 'lib/stupidedi/reader/separators.rb', line 28

def initialize(component, repetition, element, segment)
  @component, @repetition, @element, @segment =
    component, repetition, element, segment
end

Instance Attribute Details

#componentString

Returns:

  • (String)


17
18
19
# File 'lib/stupidedi/reader/separators.rb', line 17

def component
  @component
end

#elementString

Returns:

  • (String)


23
24
25
# File 'lib/stupidedi/reader/separators.rb', line 23

def element
  @element
end

#repetitionString

Returns:

  • (String)


20
21
22
# File 'lib/stupidedi/reader/separators.rb', line 20

def repetition
  @repetition
end

#segmentString

Returns:

  • (String)


26
27
28
# File 'lib/stupidedi/reader/separators.rb', line 26

def segment
  @segment
end

Class Method Details

.build(hash) ⇒ Separators

Returns:



76
77
78
79
80
81
82
# File 'lib/stupidedi/reader/separators.rb', line 76

def build(hash)
  Separators.new \
    hash[:component],
    hash[:repetition],
    hash[:element],
    hash[:segment]
end

.emptySeparators

Returns:



71
72
73
# File 'lib/stupidedi/reader/separators.rb', line 71

def empty
  new(nil, nil, nil, nil)
end

Instance Method Details

#charactersAbstractSet<String>

Returns:

  • (AbstractSet<String>)


53
54
55
56
57
58
# File 'lib/stupidedi/reader/separators.rb', line 53

def characters
  chars =
    [@component, @repetition, @element, @segment].select{|s| s.present? }

  Sets.absolute(chars.join.split(//), Reader::C_BYTES.split(//))
end

#copy(changes = {}) ⇒ Separators

Returns:



34
35
36
37
38
39
40
# File 'lib/stupidedi/reader/separators.rb', line 34

def copy(changes = {})
  Separators.new \
    changes.fetch(:component, @component),
    changes.fetch(:repetition, @repetition),
    changes.fetch(:element, @element),
    changes.fetch(:segment, @segment)
end

#inspectString

Returns:

  • (String)


61
62
63
# File 'lib/stupidedi/reader/separators.rb', line 61

def inspect
  "Separators(#{@component.inspect}, #{@repetition.inspect}, #{@element.inspect}, #{@segment.inspect})"
end

#merge(other) ⇒ Object

Creates a new value that has the separators from ‘other`, when they are not nil, and will use separators from `self` otherwise.



44
45
46
47
48
49
50
# File 'lib/stupidedi/reader/separators.rb', line 44

def merge(other)
  Separators.new \
    other.component  || @component,
    other.repetition || @repetition,
    other.element    || @element,
    other.segment    || @segment
end