Uses of Record Class
com.github.tadukoo.java.parsing.ParsingPojo
Packages that use ParsingPojo
Package
Description
Contains classes to use to parse Java code
Contains parsers for
class typesParsers for
code types that aren't class types or comment/doc typesParsers for Java comments and
Javadoc-
Uses of ParsingPojo in com.github.tadukoo.java.parsing
Methods in com.github.tadukoo.java.parsing with parameters of type ParsingPojoModifier and TypeMethodDescriptionprotected static voidAbstractJavaParser.verifyEndOfTokens(List<String> tokens, ParsingPojo result, JavaCodeTypes type) Checks that we've made it to the end of the tokens during parsing (to verify we're really done). -
Uses of ParsingPojo in com.github.tadukoo.java.parsing.classtypes
Methods in com.github.tadukoo.java.parsing.classtypes that return ParsingPojoModifier and TypeMethodDescriptionstatic ParsingPojoJavaClassParser.parseClass(List<String> tokens, int startToken) Parses aclassfrom the given tokens and starting index -
Uses of ParsingPojo in com.github.tadukoo.java.parsing.codetypes
Methods in com.github.tadukoo.java.parsing.codetypes that return ParsingPojoModifier and TypeMethodDescriptionstatic ParsingPojoJavaAnnotationParser.parseAnnotation(List<String> tokens, int startToken) Parses anannotationfrom the given tokens and starting indexstatic ParsingPojoJavaFieldParser.parseField(List<String> tokens, int startToken) Parses afieldfrom the given tokens and starting indexstatic ParsingPojoJavaImportStatementParser.parseImportStatement(List<String> tokens, int startToken) Parses animport statementfrom the given tokens and starting indexstatic ParsingPojoJavaMethodParser.parseMethod(List<String> tokens, int startToken) Parses amethodfrom the given tokens and starting indexstatic ParsingPojoJavaPackageDeclarationParser.parsePackageDeclaration(List<String> tokens, int startToken) Parses apackage declarationfrom the given tokens and starting indexstatic ParsingPojoJavaTypeWithModifiersParser.parseTypeWithModifiers(List<String> tokens, int startToken) Parses atype with modifiersfrom the given tokens and starting index -
Uses of ParsingPojo in com.github.tadukoo.java.parsing.comment
Methods in com.github.tadukoo.java.parsing.comment that return ParsingPojoModifier and TypeMethodDescriptionstatic ParsingPojoJavadocParser.parseJavadoc(List<String> tokens, int startToken) Parses aJavadocfrom the given tokens and starting indexstatic ParsingPojoJavaMultiLineCommentParser.parseMultiLineComment(List<String> tokens, int startToken) Parses amulti-line commentfrom the given tokens and starting indexstatic ParsingPojoJavaSingleLineCommentParser.parseSingleLineComment(List<String> tokens, int startToken) Parses asingle-line commentfrom the given tokens and starting index