Class: Quickfix::EncodedReplaceText

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) ⇒ EncodedReplaceText

Returns a new instance of EncodedReplaceText.



77070
77071
77072
77073
77074
77075
77076
# File 'lib/quickfix_fields.rb', line 77070

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

Class Method Details

.fieldObject



77067
77068
77069
# File 'lib/quickfix_fields.rb', line 77067

def EncodedReplaceText.field
  return 2801
end