Uses of Enum Class
com.github.tadukoo.java.JavaCodeTypes
Packages that use JavaCodeTypes
Package
Description
Contains the base interfaces and enums for dealing with Java code
Contains helpers for
annotations in JavaContains classes for handling comments in Java
Contains helpers for
fields in JavaContains helpers for
import statements in JavaContains helpers for
classes in JavaContains helpers for
javadocs in JavaContains helpers for
methods in JavaContains helpers for
package declarations in JavaContains classes to use to parse Java code
-
Uses of JavaCodeTypes in com.github.tadukoo.java
Methods in com.github.tadukoo.java that return JavaCodeTypesModifier and TypeMethodDescriptionJavaCodeType.getJavaCodeType()static JavaCodeTypesReturns the enum constant of this class with the specified name.static JavaCodeTypes[]JavaCodeTypes.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of JavaCodeTypes in com.github.tadukoo.java.annotation
Methods in com.github.tadukoo.java.annotation that return JavaCodeTypes -
Uses of JavaCodeTypes in com.github.tadukoo.java.comment
Methods in com.github.tadukoo.java.comment that return JavaCodeTypesModifier and TypeMethodDescriptionJavaMultiLineComment.getJavaCodeType()JavaSingleLineComment.getJavaCodeType() -
Uses of JavaCodeTypes in com.github.tadukoo.java.field
Methods in com.github.tadukoo.java.field that return JavaCodeTypes -
Uses of JavaCodeTypes in com.github.tadukoo.java.importstatement
Methods in com.github.tadukoo.java.importstatement that return JavaCodeTypes -
Uses of JavaCodeTypes in com.github.tadukoo.java.javaclass
Fields in com.github.tadukoo.java.javaclass with type parameters of type JavaCodeTypesModifier and TypeFieldDescriptionprotected List<com.github.tadukoo.util.tuple.Pair<JavaCodeTypes,String>> JavaClass.innerElementsOrderThe order of the elements inside the classprotected List<com.github.tadukoo.util.tuple.Pair<JavaCodeTypes,String>> JavaClassBuilder.innerElementsOrderThe order of the elements inside the classMethods in com.github.tadukoo.java.javaclass that return JavaCodeTypesMethods in com.github.tadukoo.java.javaclass that return types with arguments of type JavaCodeTypesModifier and TypeMethodDescriptionList<com.github.tadukoo.util.tuple.Pair<JavaCodeTypes,String>> JavaClass.getInnerElementsOrder()Method parameters in com.github.tadukoo.java.javaclass with type arguments of type JavaCodeTypesModifier and TypeMethodDescriptionJavaClassBuilder.innerElementsOrder(List<com.github.tadukoo.util.tuple.Pair<JavaCodeTypes, String>> innerElementsOrder) voidEditableJavaClass.setInnerElementsOrder(List<com.github.tadukoo.util.tuple.Pair<JavaCodeTypes, String>> innerElementsOrder) -
Uses of JavaCodeTypes in com.github.tadukoo.java.javadoc
Methods in com.github.tadukoo.java.javadoc that return JavaCodeTypes -
Uses of JavaCodeTypes in com.github.tadukoo.java.method
Methods in com.github.tadukoo.java.method that return JavaCodeTypes -
Uses of JavaCodeTypes in com.github.tadukoo.java.packagedeclaration
Methods in com.github.tadukoo.java.packagedeclaration that return JavaCodeTypes -
Uses of JavaCodeTypes in com.github.tadukoo.java.parsing
Methods in com.github.tadukoo.java.parsing that return JavaCodeTypesModifier and TypeMethodDescriptionprotected static JavaCodeTypesAbstractJavaParser.determineFieldOrMethod(List<String> tokens, int currentToken) Used to determine if we have a field or method based on the token we're looking at in parsing.Methods in com.github.tadukoo.java.parsing with parameters of type JavaCodeTypesModifier 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).Constructors in com.github.tadukoo.java.parsing with parameters of type JavaCodeTypesModifierConstructorDescriptionJavaParsingException(JavaCodeTypes type, String message) Makes a newJavaParsingExceptionwith no underlying other cause