Class: Quickfix::PriorityIndicator

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

Returns a new instance of PriorityIndicator.



8599
8600
8601
8602
8603
8604
8605
# File 'lib/quickfix_fields.rb', line 8599

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

Class Method Details

.fieldObject



8596
8597
8598
# File 'lib/quickfix_fields.rb', line 8596

def PriorityIndicator.field
	return 638
end