Class: FlatApi::FlatLocales

Inherits:
Object
  • Object
show all
Defined in:
lib/flat_api/models/flat_locales.rb

Constant Summary collapse

EN =
"en".freeze
ES =
"es".freeze
FR =
"fr".freeze
IT =
"it".freeze
PL =
"pl".freeze
RO =
"ro".freeze
NL =
"nl".freeze

Instance Method Summary collapse

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



29
30
31
32
33
# File 'lib/flat_api/models/flat_locales.rb', line 29

def build_from_hash(value)
  constantValues = FlatLocales.constants.select{|c| FlatLocales::const_get(c) == value}
  raise "Invalid ENUM value #{value} for class #FlatLocales" if constantValues.empty?
  value
end