class Wpxf::EnumOption
An enum option.
Public Instance Methods
valid?(value)
click to toggle source
Check if the specified value is valid in the context of this option. @param value the value to validate. @return [Boolean] true if valid.
Calls superclass method
# File lib/wpxf/core/opts/enum_option.rb, line 10 def valid?(value) return false if value && !enums.include?(value) super end