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.



129
130
131
132
133
# File 'lib/sql_handler.rb', line 129

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

Instance Attribute Details

#fieldObject (readonly)

Returns the value of attribute field.



127
128
129
# File 'lib/sql_handler.rb', line 127

def field
  @field
end

#valueObject (readonly)

Returns the value of attribute value.



127
128
129
# File 'lib/sql_handler.rb', line 127

def value
  @value
end

#verbObject (readonly)

Returns the value of attribute verb.



127
128
129
# File 'lib/sql_handler.rb', line 127

def verb
  @verb
end