Class: OpenSearch::DSL::Search::Filters::Not
- Inherits:
-
Object
- Object
- OpenSearch::DSL::Search::Filters::Not
- Includes:
- BaseComponent
- Defined in:
- lib/opensearch/dsl/search/filters/not.rb
Overview
Note:
Since ‘not` is a keyword in Ruby, use the `_not` method in DSL definitions
A filter which takes out documents matching a filter from the results
Instance Method Summary collapse
-
#method_missing(name, *args, &block) ⇒ Object
Looks up the corresponding class for a method being invoked, and initializes it.
- #respond_to_missing?(method_name, include_private = false) ⇒ Boolean
-
#to_hash(options = {}) ⇒ Hash
Convert the component to a Hash.
Methods included from BaseComponent
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
Looks up the corresponding class for a method being invoked, and initializes it
69 70 71 72 73 |
# File 'lib/opensearch/dsl/search/filters/not.rb', line 69 def method_missing(name, *args, &block) klass = Utils.__camelize(name) raise NoMethodError, "undefined method '#{name}' for #{self}" unless Filters.const_defined? klass @value = Filters.const_get(klass).new(*args, &block) end |
Instance Method Details
#respond_to_missing?(method_name, include_private = false) ⇒ Boolean
75 76 77 |
# File 'lib/opensearch/dsl/search/filters/not.rb', line 75 def respond_to_missing?(method_name, include_private = false) Filters.const_defined?(Utils.__camelize(method_name)) || super end |
#to_hash(options = {}) ⇒ Hash
Convert the component to a Hash
A default implementation, DSL classes can overload it.
85 86 87 88 89 90 91 92 93 |
# File 'lib/opensearch/dsl/search/filters/not.rb', line 85 def to_hash( = {}) if (!@value || @value.empty?) && !@block @hash = super elsif @block call @hash = { name.to_sym => @value.to_hash } end @hash end |