Class: Quickfix::UnderlyingEventTimeUnit

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

Returns a new instance of UnderlyingEventTimeUnit.



25993
25994
25995
25996
25997
25998
25999
# File 'lib/quickfix_fields.rb', line 25993

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

Class Method Details

.fieldObject



25990
25991
25992
# File 'lib/quickfix_fields.rb', line 25990

def UnderlyingEventTimeUnit.field
	return 1985
end