Class: OData::Properties::Float

Inherits:
OData::Property show all
Includes:
Number
Defined in:
lib/odata/properties/float.rb

Overview

Defines the Float OData type.

Direct Known Subclasses

Double, Single

Instance Attribute Summary

Attributes inherited from OData::Property

#name

Instance Method Summary collapse

Methods inherited from OData::Property

#==, #allows_nil?, #concurrency_mode, #initialize, #to_xml, #url_value, #xml_value

Constructor Details

This class inherits a constructor from OData::Property

Instance Method Details

#typeObject

The OData type name



25
26
27
# File 'lib/odata/properties/float.rb', line 25

def type
  'Edm.Double'
end

#valueFloat?

Returns the property value, properly typecast

Returns:



9
10
11
12
13
14
15
# File 'lib/odata/properties/float.rb', line 9

def value
  if (@value.nil? || @value.empty?) && allows_nil?
    nil
  else
    @value.to_f
  end
end

#value=(new_value) ⇒ Object

Sets the property value



19
20
21
22
# File 'lib/odata/properties/float.rb', line 19

def value=(new_value)
  validate(new_value.to_f)
  @value = new_value.to_f.to_s
end