Class: FloatFieldType

Inherits:
FieldType
  • Object
show all
Defined in:
app/models/float_field_type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#floatObject

Returns the value of attribute float.



2
3
4
# File 'app/models/float_field_type.rb', line 2

def float
  @float
end

Instance Method Details

#data=(data_hash) ⇒ Object



9
10
11
# File 'app/models/float_field_type.rb', line 9

def data=(data_hash)
  @float = data_hash.deep_symbolize_keys[:float]
end

#field_item_as_indexed_json_for_field_type(field_item, options = {}) ⇒ Object



13
14
15
16
17
# File 'app/models/float_field_type.rb', line 13

def field_item_as_indexed_json_for_field_type(field_item, options = {})
  json = {}
  json[mapping_field_name] = field_item.data['float']
  json
end

#mappingObject



19
20
21
# File 'app/models/float_field_type.rb', line 19

def mapping
  {name: mapping_field_name, type: :float}
end