# File lib/cim/type.rb, line 72 def initialize type type.downcase! if type.is_a? String @type = type.to_sym @type = NORMALIZE[@type] || @type raise TypeError.new("#{type}") unless TYPES.include? @type end