Class: MuxRuby::BroadcastResolution
- Inherits:
-
Object
- Object
- MuxRuby::BroadcastResolution
- Defined in:
- lib/mux_ruby/models/broadcast_resolution.rb
Constant Summary collapse
- N1920X1080 =
"1920x1080".freeze
- N1280X720 =
"1280x720".freeze
- N1080X1920 =
"1080x1920".freeze
- N720X1280 =
"720x1280".freeze
- N1080X1080 =
"1080x1080".freeze
- N720X720 =
"720x720".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
28 29 30 |
# File 'lib/mux_ruby/models/broadcast_resolution.rb', line 28 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
35 36 37 38 39 |
# File 'lib/mux_ruby/models/broadcast_resolution.rb', line 35 def build_from_hash(value) constantValues = BroadcastResolution.constants.select { |c| BroadcastResolution::const_get(c) == value } raise "Invalid ENUM value #{value} for class #BroadcastResolution" if constantValues.empty? value end |