Class: Quickfix::ValueCheckType

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ValueCheckType

Returns a new instance of ValueCheckType.



24459
24460
24461
24462
24463
24464
24465
# File 'lib/quickfix_fields.rb', line 24459

def initialize(data = nil)
  if( data == nil )
    super(1869)
  else
    super(1869, data)
  end
end

Class Method Details

.fieldObject



24456
24457
24458
# File 'lib/quickfix_fields.rb', line 24456

def ValueCheckType.field
  return 1869
end