All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.jalokim.propertiestojson.path.InsideBracketsParser Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package pl.jalokim.propertiestojson.path;

class InsideBracketsParser implements PathParser {

    @Override
    public void parseNextChar(ParserContext parserContext, char currentChar) {
        parserContext.appendNextChar(currentChar);
        if (currentChar == ']') {
            parserContext.switchToOuterParser();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy