Class: Algolia::Analytics::Operator
- Inherits:
-
Object
- Object
- Algolia::Analytics::Operator
- Defined in:
- lib/algolia/models/analytics/operator.rb
Constant Summary collapse
- APPLY =
":".freeze
- LESS_THAN =
"<".freeze
- LESS_EQUALS =
"<=".freeze
- EQUALS =
"=".freeze
- NOT_EQUALS =
"!=".freeze
- GREATER_THAN =
">".freeze
- GREATER_EQUALS =
">=".freeze
Class Method Summary collapse
- .all_vars ⇒ Object
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
permalink .all_vars ⇒ Object
[View source]
19 20 21 |
# File 'lib/algolia/models/analytics/operator.rb', line 19 def self.all_vars @all_vars ||= [APPLY, LESS_THAN, LESS_EQUALS, EQUALS, NOT_EQUALS, GREATER_THAN, GREATER_EQUALS].freeze end |
permalink .build_from_hash(value) ⇒ String
Builds the enum from string
26 27 28 |
# File 'lib/algolia/models/analytics/operator.rb', line 26 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
permalink #build_from_hash(value) ⇒ String
Builds the enum from string
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 |