Class: EmassClient::Systems::EnumAttributeValidator

Inherits:
Object
  • Object
show all
Defined in:
lib/emass_client/models/systems.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(datatype, allowable_values) ⇒ EnumAttributeValidator

Returns a new instance of EnumAttributeValidator.



374
375
376
377
378
379
380
381
382
383
384
385
# File 'lib/emass_client/models/systems.rb', line 374

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.



372
373
374
# File 'lib/emass_client/models/systems.rb', line 372

def allowable_values
  @allowable_values
end

#datatypeObject (readonly)

Returns the value of attribute datatype.



371
372
373
# File 'lib/emass_client/models/systems.rb', line 371

def datatype
  @datatype
end

Instance Method Details

#valid?(value) ⇒ Boolean

Returns:

  • (Boolean)


387
388
389
# File 'lib/emass_client/models/systems.rb', line 387

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