class Vcard::V3_0::PropertyValue::Integer
Public Class Methods
new(val)
click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 146 def initialize(val) self.value = val self.type = "integer" end
Public Instance Methods
<=>(another)
click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 142 def <=>(another) value <=> another.value end
to_hash()
click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 155 def to_hash value end
to_s()
click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 151 def to_s value.to_s end