Class: Notifo::ConfirmMode
- Inherits:
-
Object
- Object
- Notifo::ConfirmMode
- Defined in:
- lib/notifo/models/confirm_mode.rb
Constant Summary collapse
- SEEN =
'Seen'.freeze
- EXPLICIT =
'Explicit'.freeze
- NONE =
'None'.freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
23 24 25 26 27 |
# File 'lib/notifo/models/confirm_mode.rb', line 23 def build_from_hash(value) constantValues = ConfirmMode.constants.select { |c| ConfirmMode::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ConfirmMode" if constantValues.empty? value end |