# File lib/cgikit.rb, line 5129
        def to_s
                str = '('
                @qualifiers.each do |q|
                        str << q.to_s
                        unless @qualifiers.last == q then
                                str << " AND "
                        end
                end
                str << ')'
                str
        end