Class: FtcEventsClient::ApiAdvancementStatus
- Inherits:
-
Object
- Object
- FtcEventsClient::ApiAdvancementStatus
- Defined in:
- lib/ftc_events_client/models/api_advancement_status.rb
Constant Summary collapse
- NULL =
'NULL'.freeze
- FIRST =
'FIRST'.freeze
- ALREADY_ADVANCING =
'ALREADY_ADVANCING'.freeze
- ADVANCING_ABOVE =
'ADVANCING_ABOVE'.freeze
- INELIGIBLE =
'INELIGIBLE'.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
25 26 27 28 29 |
# File 'lib/ftc_events_client/models/api_advancement_status.rb', line 25 def build_from_hash(value) constantValues = ApiAdvancementStatus.constants.select { |c| ApiAdvancementStatus::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ApiAdvancementStatus" if constantValues.empty? value end |