# File lib/cim/type.rb, line 96
    def == t
      case t
      when Type then t.type == @type
      when Symbol then t == @type
      when String then t.downcase == @type.to_s
      else
        false
      end
    end