Class: RailsSimpleSearch::ConditionItem

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field, verb, value) ⇒ ConditionItem

Returns a new instance of ConditionItem.



137
138
139
140
141
# File 'lib/sql_handler.rb', line 137

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

Instance Attribute Details

#fieldObject (readonly)

Returns the value of attribute field.



135
136
137
# File 'lib/sql_handler.rb', line 135

def field
  @field
end

#valueObject (readonly)

Returns the value of attribute value.



135
136
137
# File 'lib/sql_handler.rb', line 135

def value
  @value
end

#verbObject (readonly)

Returns the value of attribute verb.



135
136
137
# File 'lib/sql_handler.rb', line 135

def verb
  @verb
end