Uses of Class
io.github.fastclasspathscanner.utils.Parser.ParseException
-
Packages that use Parser.ParseException Package Description io.github.fastclasspathscanner.utils -
-
Uses of Parser.ParseException in io.github.fastclasspathscanner.utils
Methods in io.github.fastclasspathscanner.utils that throw Parser.ParseException Modifier and Type Method Description void
Parser. expect(char expectedChar)
Expect the next character.char
Parser. getc()
Get the next character.static boolean
TypeUtils. getIdentifierToken(Parser parser)
Parse a Java identifier part (between separators and other non-alphanumeric characters).static boolean
TypeUtils. getIdentifierToken(Parser parser, char separator, char separatorReplace)
Parse a Java identifier with the given separator ('.' or '/').void
Parser. peekExpect(char expectedChar)
Get the next character, throwing aParser.ParseException
if the next character is not the expected character.Constructors in io.github.fastclasspathscanner.utils that throw Parser.ParseException Constructor Description Parser(String string)
Construct a parser.
-