Class: LogStash::Setting::NullableString
- Inherits:
-
String
- Object
- LogStash::Setting
- String
- LogStash::Setting::NullableString
- Defined in:
- lib/logstash/settings.rb
Instance Attribute Summary
Attributes inherited from LogStash::Setting
Instance Method Summary collapse
Methods inherited from String
Methods inherited from LogStash::Setting
#==, #initialize, #reset, #set, #set?, #strict?, #to_hash, #validate_value, #value
Constructor Details
This class inherits a constructor from LogStash::Setting::String
Instance Method Details
#validate(value) ⇒ Object
419 420 421 422 |
# File 'lib/logstash/settings.rb', line 419 def validate(value) return if value.nil? super(value) end |