class DMap::Properties::Integer

Public Class Methods

parent_name() click to toggle source
# File lib/dmap/properties/integer.rb, line 8
def self.parent_name
  "Integer"
end

Public Instance Methods

length(value) click to toggle source
# File lib/dmap/properties/integer.rb, line 4
def length(value)
  false unless (value.is_a(Fixnum) || value.is_a(Integer))
end