Class: ProconBypassMan::ButtonsSettingConfiguration::ParamNormalizer::IfPressed
- Inherits:
-
Object
- Object
- ProconBypassMan::ButtonsSettingConfiguration::ParamNormalizer::IfPressed
- Defined in:
- lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/if_pressed.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(value) ⇒ IfPressed
constructor
A new instance of IfPressed.
- #to_value! ⇒ Object
Constructor Details
#initialize(value) ⇒ IfPressed
Returns a new instance of IfPressed.
7 8 9 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/if_pressed.rb', line 7 def initialize(value) @value = value end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
5 6 7 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/if_pressed.rb', line 5 def value @value end |
Instance Method Details
#to_value! ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/if_pressed.rb', line 11 def to_value! case value when Integer, TrueClass, FalseClass, NilClass raise UnSupportValueError when Symbol, String return [value.to_sym] when Array return value.map(&:to_sym).uniq else raise UnexpectedValueError end end |