Class: Stupidedi::Values::FunctionalGroupVal
- Inherits:
-
AbstractVal
show all
- Includes:
- SegmentValGroup
- Defined in:
- lib/stupidedi/values/functional_group_val.rb
Overview
Instance Attribute Summary (collapse)
Instance Method Summary
(collapse)
#leaf?
Methods inherited from AbstractVal
#blank?, #characters, #component?, #composite?, #element?, #empty?, #interchange?, #invalid?, #loop?, #present?, #repeated?, #segment?, #separator?, #simple?, #size, #table?, #transaction_set?, #transmission?, #valid?
Methods included from Color
ansi, #ansi
Constructor Details
- (FunctionalGroupVal) initialize(definition, children)
A new instance of FunctionalGroupVal
19
20
21
22
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 19
def initialize(definition, children)
@definition, @children =
definition, children
end
|
Instance Attribute Details
15
16
17
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 15
def children
@children
end
|
- (FunctionalGroupDef) definition
12
13
14
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 12
def definition
@definition
end
|
Instance Method Details
- ==(other)
94
95
96
97
98
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 94
def ==(other)
eql?(other) or
(other.definition == @definition or
other.children == @children)
end
|
25
26
27
28
29
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 25
def copy(changes = {})
FunctionalGroupVal.new \
changes.fetch(:definition, @definition),
changes.fetch(:children, @children)
end
|
- (Boolean) functional_group?
33
34
35
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 33
def functional_group?
true
end
|
- (String?) implementation
59
60
61
62
63
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 59
def implementation
if at(6) == "X"
at(7).to_s.slice(6, 4)
end
end
|
90
91
92
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 90
def inspect
ansi.envelope("Group") << "(#{@children.map(&:inspect).join(', ')})"
end
|
- pretty_print(q)
This method returns an undefined value.
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 71
def pretty_print(q)
id = @definition.try do |d|
ansi.bold("[#{d.id.to_s}]")
end
q.text(ansi.envelope("FunctionalGroupVal#{id}"))
q.group(2, "(", ")") do
q.breakable ""
@children.each do |e|
unless q.current_group.first?
q.text ", "
q.breakable
end
q.pp e
end
end
end
|
- (String?) release
45
46
47
48
49
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 45
def release
if at(6) == "X"
at(7).to_s.slice(0, 4)
end
end
|
- (Module) segment_dict
66
67
68
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 66
def segment_dict
@definition.segment_dict
end
|
- (String?) subrelease
52
53
54
55
56
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 52
def subrelease
if at(6) == "X"
at(7).to_s.slice(0, 5)
end
end
|
- (String?) version
38
39
40
41
42
|
# File 'lib/stupidedi/values/functional_group_val.rb', line 38
def version
if at(6) == "X"
at(7).to_s.slice(0, 3)
end
end
|