Class: StormgateWorld::MatchResult

Inherits:
Object
  • Object
show all
Defined in:
lib/stormgate_world/models/match_result.rb

Constant Summary collapse

WIN =
"win".freeze
LOSS =
"loss".freeze
UNDECIDED =
"undecided".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.all_varsObject



22
23
24
# File 'lib/stormgate_world/models/match_result.rb', line 22

def self.all_vars
  @all_vars ||= [WIN, LOSS, UNDECIDED].freeze
end

.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
# File 'lib/stormgate_world/models/match_result.rb', line 29

def self.build_from_hash(value)
  new.build_from_hash(value)
end

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



36
37
38
39
# File 'lib/stormgate_world/models/match_result.rb', line 36

def build_from_hash(value)
  return value if MatchResult.all_vars.include?(value)
  raise "Invalid ENUM value #{value} for class #MatchResult"
end