Uses of Class
com.github.tadukoo.java.importstatement.JavaImportStatement
Packages that use JavaImportStatement
Package
Description
Contains helpers for
import statements in JavaContains helpers for
classes in JavaParsers for
code types that aren't class types or comment/doc types-
Uses of JavaImportStatement in com.github.tadukoo.java.importstatement
Classes in com.github.tadukoo.java.importstatement with type parameters of type JavaImportStatementModifier and TypeClassDescriptionclassJavaImportStatementBuilder<ImportStatementType extends JavaImportStatement>A builder used to build aJavaImportStatement.Subclasses of JavaImportStatement in com.github.tadukoo.java.importstatementModifier and TypeClassDescriptionclassRepresents aJavaImportStatementthat can be modifiedclassRepresents aJavaImportStatementthat can't be modifiedMethods in com.github.tadukoo.java.importstatement with parameters of type JavaImportStatementModifier and TypeMethodDescriptionJavaImportStatementBuilder.copy(JavaImportStatement importStatement) Copies the settings from the givenimport statementinto this builder -
Uses of JavaImportStatement in com.github.tadukoo.java.javaclass
Fields in com.github.tadukoo.java.javaclass with type parameters of type JavaImportStatementModifier and TypeFieldDescriptionprotected List<JavaImportStatement>JavaClass.importStatementsTheimport statementsof the classprotected List<JavaImportStatement>JavaClassBuilder.importStatementsTheimport statementsof the classMethods in com.github.tadukoo.java.javaclass that return types with arguments of type JavaImportStatementMethods in com.github.tadukoo.java.javaclass with parameters of type JavaImportStatementModifier and TypeMethodDescriptionvoidEditableJavaClass.addImportStatement(JavaImportStatement importStatement) JavaClassBuilder.importStatement(JavaImportStatement importStatement) Method parameters in com.github.tadukoo.java.javaclass with type arguments of type JavaImportStatementModifier and TypeMethodDescriptionvoidEditableJavaClass.addImportStatements(List<JavaImportStatement> importStatements) JavaClassBuilder.importStatements(List<JavaImportStatement> importStatements) voidEditableJavaClass.setImportStatements(List<JavaImportStatement> importStatements) Constructor parameters in com.github.tadukoo.java.javaclass with type arguments of type JavaImportStatementModifierConstructorDescriptionprotectedJavaClass(boolean editable, boolean isInnerClass, JavaPackageDeclaration packageDeclaration, List<JavaImportStatement> importStatements, Javadoc javadoc, List<JavaAnnotation> annotations, Visibility visibility, boolean isAbstract, boolean isStatic, boolean isFinal, JavaType className, JavaType superClassName, List<JavaType> implementsInterfaceNames, List<JavaStaticCodeBlock> staticCodeBlocks, List<JavaSingleLineComment> singleLineComments, List<JavaMultiLineComment> multiLineComments, List<JavaClass> innerClasses, List<JavaField> fields, List<JavaMethod> methods, List<com.github.tadukoo.util.tuple.Pair<JavaCodeTypes, String>> innerElementsOrder) Constructs a new Java Class with the given parameters -
Uses of JavaImportStatement in com.github.tadukoo.java.parsing.codetypes
Methods in com.github.tadukoo.java.parsing.codetypes that return JavaImportStatementModifier and TypeMethodDescriptionstatic JavaImportStatementJavaImportStatementParser.parseImportStatement(String content) Parses animport statementfrom the given content String