# File lib/active_ldap/schema/syntaxes.rb, line 248
        def type_cast(value)
          return value if value.nil?
          begin
            Integer(value)
          rescue ArgumentError
            value
          end
        end