Class: Apipie::Validator::EnumValidator

Inherits:
BaseValidator show all
Defined in:
lib/apipie/validator.rb

Overview

arguments value must be one of given in array

Instance Attribute Summary

Attributes inherited from BaseValidator

#param_description

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseValidator

#==, #error, #expected_type, find, #format_description_value, inherited, #inspect, #inspected_fields, #merge_with, #param_name, #params_ordered, #to_json, #to_s, #valid?

Constructor Details

#initialize(param_description, argument) ⇒ EnumValidator

Returns a new instance of EnumValidator.



163
164
165
166
# File 'lib/apipie/validator.rb', line 163

def initialize(param_description, argument)
  super(param_description)
  @array = argument
end

Class Method Details

.build(param_description, argument, options, proc) ⇒ Object



172
173
174
# File 'lib/apipie/validator.rb', line 172

def self.build(param_description, argument, options, proc)
  self.new(param_description, argument) if argument.is_a?(Array)
end

Instance Method Details

#descriptionObject



180
181
182
183
# File 'lib/apipie/validator.rb', line 180

def description
  string = @array.map { |value| format_description_value(value) }.join(', ')
  "Must be one of: #{string}."
end

#validate(value) ⇒ Object



168
169
170
# File 'lib/apipie/validator.rb', line 168

def validate(value)
  @array.include?(value)
end

#valuesObject



176
177
178
# File 'lib/apipie/validator.rb', line 176

def values
  @array
end