class Vcard::V4_0::PropertyValue::Integer
Public Class Methods
new(val)
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 134 def initialize(val) self.value = val self.type = "integer" end
Public Instance Methods
<=>(another)
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 130 def <=>(another) value <=> another.value end
to_hash()
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 143 def to_hash value end
to_s()
click to toggle source
# File lib/vobject/vcard/v4_0/propertyvalue.rb, line 139 def to_s value.to_s end