Class: Stupidedi::Versions::Common::ElementTypes::FixnumVal::Valid

Inherits:
Stupidedi::Versions::Common::ElementTypes::FixnumVal show all
Defined in:
lib/stupidedi/versions/common/element_types/nn.rb

Direct Known Subclasses

Empty, NonEmpty

Instance Attribute Summary

Attributes inherited from Stupidedi::Values::SimpleElementVal

#position, #usage

Instance Method Summary collapse

Methods inherited from Stupidedi::Versions::Common::ElementTypes::FixnumVal

empty, #numeric?, #too_long?, #too_short?, value

Methods inherited from Stupidedi::Values::SimpleElementVal

#allowed?, #component?, #date?, #id?, #initialize, #leaf?, #numeric?, #simple?, #string?, #time?, #to_s, #to_x12, #too_long?, #too_short?

Methods inherited from Stupidedi::Values::AbstractElementVal

#element?, #size

Methods inherited from Stupidedi::Values::AbstractVal

#blank?, #characters, #component?, #composite?, #definition, #descriptor, #element?, #empty?, #functional_group?, #interchange?, #invalid?, #leaf?, #loop?, #present?, #repeated?, #segment?, #separator?, #simple?, #size, #table?, #transaction_set?, #transmission?

Methods included from Color

ansi, #ansi

Methods included from Inspect

#inspect

Constructor Details

This class inherits a constructor from Stupidedi::Values::SimpleElementVal

Instance Method Details

#==(other)



140
141
142
143
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 140

def ==(other)
  other = FixnumVal.value(other, usage, position)
  other.valid? and other.value == value
end

#coerce(other)



136
137
138
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 136

def coerce(other)
  return FixnumVal.value(other, usage, position), self
end

#copy(changes = {}) ⇒ Empty

Returns:



129
130
131
132
133
134
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 129

def copy(changes = {})
  FixnumVal.value \
    changes.fetch(:value, value),
    changes.fetch(:usage, usage),
    changes.fetch(:position, position)
end

#mapFixnumVal

Returns:



124
125
126
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 124

def map
  FixnumVal.value(yield(value), usage, position)
end

#valid?Boolean

Returns:

  • (Boolean)


119
120
121
# File 'lib/stupidedi/versions/common/element_types/nn.rb', line 119

def valid?
  true
end