Uses of Class
com.github.tadukoo.java.parsing.JavaParsingException
Packages that use JavaParsingException
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 JavaParsingException in com.github.tadukoo.java.parsing
Methods in com.github.tadukoo.java.parsing that throw JavaParsingExceptionModifier and TypeMethodDescriptionstatic JavaCodeTypeParses the given text as Java code and returns it as the properJavaCodeTypeprotected 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 JavaParsingException in com.github.tadukoo.java.parsing.classtypes
Methods in com.github.tadukoo.java.parsing.classtypes that throw JavaParsingExceptionModifier and TypeMethodDescriptionstatic JavaClassJavaClassParser.parseClass(String content) Parses aclassfrom the given content Stringstatic ParsingPojoJavaClassParser.parseClass(List<String> tokens, int startToken) Parses aclassfrom the given tokens and starting index -
Uses of JavaParsingException in com.github.tadukoo.java.parsing.codetypes
Methods in com.github.tadukoo.java.parsing.codetypes that throw JavaParsingExceptionModifier and TypeMethodDescriptionstatic JavaAnnotationJavaAnnotationParser.parseAnnotation(String content) Parses the given text into anannotationif possible, or returns nullstatic ParsingPojoJavaAnnotationParser.parseAnnotation(List<String> tokens, int startToken) Parses anannotationfrom the given tokens and starting indexstatic JavaFieldJavaFieldParser.parseField(String content) Parses afieldfrom the given content Stringstatic ParsingPojoJavaFieldParser.parseField(List<String> tokens, int startToken) Parses afieldfrom the given tokens and starting indexstatic JavaImportStatementJavaImportStatementParser.parseImportStatement(String content) Parses animport statementfrom the given content Stringstatic ParsingPojoJavaImportStatementParser.parseImportStatement(List<String> tokens, int startToken) Parses animport statementfrom the given tokens and starting indexstatic JavaMethodJavaMethodParser.parseMethod(String content) Parses amethodfrom the given content Stringstatic ParsingPojoJavaMethodParser.parseMethod(List<String> tokens, int startToken) Parses amethodfrom the given tokens and starting indexstatic JavaPackageDeclarationJavaPackageDeclarationParser.parsePackageDeclaration(String content) Parses apackage declarationfrom the given content Stringstatic 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 JavaParsingException in com.github.tadukoo.java.parsing.comment
Methods in com.github.tadukoo.java.parsing.comment that throw JavaParsingExceptionModifier and TypeMethodDescriptionstatic JavadocJavadocParser.parseJavadoc(String content) Parses aJavadocfrom the given content Stringstatic ParsingPojoJavadocParser.parseJavadoc(List<String> tokens, int startToken) Parses aJavadocfrom the given tokens and starting indexstatic JavaMultiLineCommentJavaMultiLineCommentParser.parseMultiLineComment(String content) Parses amulti-line commentfrom the given content Stringstatic ParsingPojoJavaMultiLineCommentParser.parseMultiLineComment(List<String> tokens, int startToken) Parses amulti-line commentfrom the given tokens and starting indexstatic JavaSingleLineCommentJavaSingleLineCommentParser.parseSingleLineComment(String content) Parses asingle-line commentfrom the given content Stringstatic ParsingPojoJavaSingleLineCommentParser.parseSingleLineComment(List<String> tokens, int startToken) Parses asingle-line commentfrom the given tokens and starting index