Class: Hyperion::Filter

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field, operator, value) ⇒ Filter

Returns a new instance of Filter.



6
7
8
9
10
# File 'lib/hyperion/filter.rb', line 6

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

Instance Attribute Details

#fieldObject (readonly)

Returns the value of attribute field.



4
5
6
# File 'lib/hyperion/filter.rb', line 4

def field
  @field
end

#operatorObject (readonly)

Returns the value of attribute operator.



4
5
6
# File 'lib/hyperion/filter.rb', line 4

def operator
  @operator
end

#valueObject (readonly)

Returns the value of attribute value.



4
5
6
# File 'lib/hyperion/filter.rb', line 4

def value
  @value
end

Instance Method Details

#to_hObject



12
13
14
15
16
17
18
# File 'lib/hyperion/filter.rb', line 12

def to_h
  {
    :operator => operator,
    :field    => field,
    :value    => value
  }
end