Class: Notifo::TopicQueryScope

Inherits:
Object
  • Object
show all
Defined in:
lib/notifo/models/topic_query_scope.rb

Constant Summary collapse

ALL =
'All'.freeze
EXPLICIT =
'Explicit'.freeze
IMPLICIT =
'Implicit'.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



23
24
25
26
27
# File 'lib/notifo/models/topic_query_scope.rb', line 23

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