Class: OData::Properties::Single

Inherits:
Float show all
Defined in:
lib/odata/properties/float.rb

Overview

Defines the Single (Float) OData type.

Instance Attribute Summary

Attributes inherited from OData::Property

#name, #value

Instance Method Summary collapse

Methods inherited from Float

#value, #value=

Methods inherited from OData::Property

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

Constructor Details

This class inherits a constructor from OData::Property

Instance Method Details

#typeObject

The OData type name



46
47
48
# File 'lib/odata/properties/float.rb', line 46

def type
  'Edm.Single'
end

#url_valueString

Value to be used in URLs.

Returns:



52
53
54
# File 'lib/odata/properties/float.rb', line 52

def url_value
  "#{value}F"
end