Class: RailsSimpleSearch::ConditionItem

Inherits:
Object
  • Object
show all
Defined in:
lib/sql_handler.rb

Overview

This class holds a single condition

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field, verb, value) ⇒ ConditionItem

Returns a new instance of ConditionItem.



144
145
146
147
148
# File 'lib/sql_handler.rb', line 144

def initialize(field, verb, value)
  @field = field
  @verb = verb
  @value = value
end

Instance Attribute Details

#fieldObject (readonly)

Returns the value of attribute field.



142
143
144
# File 'lib/sql_handler.rb', line 142

def field
  @field
end

#valueObject (readonly)

Returns the value of attribute value.



142
143
144
# File 'lib/sql_handler.rb', line 142

def value
  @value
end

#verbObject (readonly)

Returns the value of attribute verb.



142
143
144
# File 'lib/sql_handler.rb', line 142

def verb
  @verb
end