Builds the enum from string
Parameters:
enum value in the form of the string
Returns:
The enum value
33 34 35 36
# File 'lib/algolia/models/analytics/operator.rb', line 33 def build_from_hash(value) return value if Operator.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Operator" end