Class: Eson::Search::Not
- Inherits:
-
Object
- Object
- Eson::Search::Not
- Defined in:
- lib/eson/search/not.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
Attributes included from Filters
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Not
constructor
A new instance of Not.
-
#not { ... } ⇒ self
Generates a ‘not` filter in a filter context.
- #to_query_hash ⇒ Object
Methods included from Filter
Methods included from Filters
Constructor Details
#initialize(options = {}) ⇒ Not
Returns a new instance of Not.
13 14 15 |
# File 'lib/eson/search/not.rb', line 13 def initialize( = {}) self. = end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Eson::Search::Filter
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
11 12 13 |
# File 'lib/eson/search/not.rb', line 11 def @options end |
Instance Method Details
#not { ... } ⇒ self
9 |
# File 'lib/eson/search/not.rb', line 9 short_name 'not' |
#to_query_hash ⇒ Object
17 18 19 |
# File 'lib/eson/search/not.rb', line 17 def to_query_hash { name => { :filter => filters.to_query_hash } } end |