public void process()

in src/main/java/org/apache/sling/query/impl/selector/parser/State.java [157:169]


        public void process(ParserContext context, char c) {
            if (c == ']') {
                context.setAttributeKey();
                context.addAttribute();
                context.setState(State.IDLE);
            } else if (ArrayUtils.contains(OPERATORS, c)) {
                context.setAttributeKey();
                context.setState(State.ATTRIBUTE_OPERATOR);
                context.append(c);
            } else {
                context.append(c);
            }
        }