Class: FtcEventsClient::PrecisionModels
- Inherits:
-
Object
- Object
- FtcEventsClient::PrecisionModels
- Defined in:
- lib/ftc_events_client/models/precision_models.rb
Constant Summary collapse
- FLOATING =
'Floating'.freeze
- FLOATING_SINGLE =
'FloatingSingle'.freeze
- FIXED =
'Fixed'.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/ftc_events_client/models/precision_models.rb', line 23 def build_from_hash(value) constantValues = PrecisionModels.constants.select { |c| PrecisionModels::const_get(c) == value } raise "Invalid ENUM value #{value} for class #PrecisionModels" if constantValues.empty? value end |