Class: Quickfix::EncodedText

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EncodedText

Returns a new instance of EncodedText.



539
540
541
542
543
544
545
# File 'lib/quickfix_fields.rb', line 539

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

Class Method Details

.fieldObject



536
537
538
# File 'lib/quickfix_fields.rb', line 536

def EncodedText.field
  return 355
end