Class: Quickfix::EncodedWarningText

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

Returns a new instance of EncodedWarningText.



61769
61770
61771
61772
61773
61774
61775
# File 'lib/quickfix_fields.rb', line 61769

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

Class Method Details

.fieldObject



61766
61767
61768
# File 'lib/quickfix_fields.rb', line 61766

def EncodedWarningText.field
	return 2521
end