Class: Tradenity::Order::EnumAttributeValidator

Inherits:
Object
  • Object
show all
Defined in:
lib/tradenity/resources/order.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(datatype, allowable_values) ⇒ EnumAttributeValidator

Returns a new instance of EnumAttributeValidator.



80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/tradenity/resources/order.rb', line 80

def initialize(datatype, allowable_values)
  @allowable_values = allowable_values.map do |value|
    case datatype.to_s
    when /Integer/i
      value.to_i
    when /Float/i
      value.to_f
    else
      value
    end
  end
end

Instance Attribute Details

#allowable_valuesObject (readonly)

Returns the value of attribute allowable_values.



78
79
80
# File 'lib/tradenity/resources/order.rb', line 78

def allowable_values
  @allowable_values
end

#datatypeObject (readonly)

Returns the value of attribute datatype.



77
78
79
# File 'lib/tradenity/resources/order.rb', line 77

def datatype
  @datatype
end

Instance Method Details

#valid?(value) ⇒ Boolean

Returns:

  • (Boolean)


93
94
95
# File 'lib/tradenity/resources/order.rb', line 93

def valid?(value)
  !value || allowable_values.include?(value)
end