Class: Repository::Filter
- Inherits:
-
Object
- Object
- Repository::Filter
- Defined in:
- lib/repository/filter.rb
Instance Attribute Summary collapse
-
#field ⇒ Object
readonly
Returns the value of attribute field.
-
#operator ⇒ Object
readonly
Returns the value of attribute operator.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(field, operator, value) ⇒ Filter
constructor
A new instance of Filter.
Constructor Details
#initialize(field, operator, value) ⇒ Filter
Returns a new instance of Filter.
6 7 8 9 10 |
# File 'lib/repository/filter.rb', line 6 def initialize(field, operator, value) @field = field @operator = operator @value = value end |
Instance Attribute Details
#field ⇒ Object (readonly)
Returns the value of attribute field.
4 5 6 |
# File 'lib/repository/filter.rb', line 4 def field @field end |
#operator ⇒ Object (readonly)
Returns the value of attribute operator.
4 5 6 |
# File 'lib/repository/filter.rb', line 4 def operator @operator end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
4 5 6 |
# File 'lib/repository/filter.rb', line 4 def value @value end |