class Mida::DataType::Integer

Integer data type Provides access to Integer methods

Public Class Methods

new(value) click to toggle source

Raises ArgumentError if value not valid

# File lib/mida_vocabulary/datatype/integer.rb, line 9
def initialize(value)
  @parsedValue = ::Kernel.Integer(value)
end