Class: Quickfix::CreditRating

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



6116
6117
6118
6119
6120
6121
6122
# File 'lib/quickfix_fields.rb', line 6116

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

Class Method Details

.fieldObject



6113
6114
6115
# File 'lib/quickfix_fields.rb', line 6113

def CreditRating.field
  return 255
end