class Vcard::V4_0::PropertyValue::Float
Public Class Methods
new(val)
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 114 def initialize(val) self.value = val self.type = "float" end
Public Instance Methods
<=>(another)
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 110 def <=>(another) value <=> another.value end
to_hash()
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 123 def to_hash value end
to_s()
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 119 def to_s value end