Uses of Class
com.github.tadukoo.java.annotation.JavaAnnotation
Packages that use JavaAnnotation
Package
Description
Contains helpers for
annotations in JavaContains helpers for
fields in JavaContains helpers for
classes in JavaContains helpers for
methods in JavaParsers for
code types that aren't class types or comment/doc types-
Uses of JavaAnnotation in com.github.tadukoo.java.annotation
Classes in com.github.tadukoo.java.annotation with type parameters of type JavaAnnotationModifier and TypeClassDescriptionclassJavaAnnotationBuilder<AnnotationType extends JavaAnnotation>Java Annotation Builder is used to build a newJavaAnnotation.Subclasses of JavaAnnotation in com.github.tadukoo.java.annotationModifier and TypeClassDescriptionclassRepresents an annotation in Java that can be modifiedclassRepresents aJavaAnnotationthat can't be modifiedMethods in com.github.tadukoo.java.annotation with parameters of type JavaAnnotationModifier and TypeMethodDescriptionJavaAnnotationBuilder.copy(JavaAnnotation annotation) Copies the settings on the givenannotationinto the builder -
Uses of JavaAnnotation in com.github.tadukoo.java.field
Fields in com.github.tadukoo.java.field with type parameters of type JavaAnnotationModifier and TypeFieldDescriptionprotected List<JavaAnnotation>JavaField.annotationsTheannotationson the fieldprotected List<JavaAnnotation>JavaFieldBuilder.annotationsTheannotationson the fieldMethods in com.github.tadukoo.java.field that return types with arguments of type JavaAnnotationMethods in com.github.tadukoo.java.field with parameters of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaField.addAnnotation(JavaAnnotation annotation) JavaFieldBuilder.annotation(JavaAnnotation annotation) Method parameters in com.github.tadukoo.java.field with type arguments of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaField.addAnnotations(List<JavaAnnotation> annotations) JavaFieldBuilder.annotations(List<JavaAnnotation> annotations) voidEditableJavaField.setAnnotations(List<JavaAnnotation> annotations) Constructor parameters in com.github.tadukoo.java.field with type arguments of type JavaAnnotationModifierConstructorDescriptionprotectedJavaField(boolean editable, Javadoc javadoc, List<JavaAnnotation> annotations, Visibility visibility, boolean isStatic, boolean isFinal, JavaType type, String name, String value) Constructs a Java Field with the given parameters -
Uses of JavaAnnotation in com.github.tadukoo.java.javaclass
Fields in com.github.tadukoo.java.javaclass with type parameters of type JavaAnnotationModifier and TypeFieldDescriptionprotected List<JavaAnnotation>JavaClass.annotationsTheannotationson the classprotected List<JavaAnnotation>JavaClassBuilder.annotationsTheannotationson the classMethods in com.github.tadukoo.java.javaclass that return types with arguments of type JavaAnnotationMethods in com.github.tadukoo.java.javaclass with parameters of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaClass.addAnnotation(JavaAnnotation annotation) JavaClassBuilder.annotation(JavaAnnotation annotation) Method parameters in com.github.tadukoo.java.javaclass with type arguments of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaClass.addAnnotations(List<JavaAnnotation> annotations) JavaClassBuilder.annotations(List<JavaAnnotation> annotations) voidEditableJavaClass.setAnnotations(List<JavaAnnotation> annotations) -
Uses of JavaAnnotation in com.github.tadukoo.java.method
Fields in com.github.tadukoo.java.method with type parameters of type JavaAnnotationModifier and TypeFieldDescriptionprotected List<JavaAnnotation>JavaMethod.annotationsTheannotationson the methodprotected List<JavaAnnotation>JavaMethodBuilder.annotationsTheannotationson the methodMethods in com.github.tadukoo.java.method that return types with arguments of type JavaAnnotationMethods in com.github.tadukoo.java.method with parameters of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaMethod.addAnnotation(JavaAnnotation annotation) JavaMethodBuilder.annotation(JavaAnnotation annotation) Method parameters in com.github.tadukoo.java.method with type arguments of type JavaAnnotationModifier and TypeMethodDescriptionvoidEditableJavaMethod.addAnnotations(List<JavaAnnotation> annotations) JavaMethodBuilder.annotations(List<JavaAnnotation> annotations) voidEditableJavaMethod.setAnnotations(List<JavaAnnotation> annotations) Constructor parameters in com.github.tadukoo.java.method with type arguments of type JavaAnnotationModifierConstructorDescriptionprotectedJavaMethod(boolean editable, Javadoc javadoc, List<JavaAnnotation> annotations, Visibility visibility, boolean isAbstract, boolean isStatic, boolean isFinal, List<JavaTypeParameter> typeParameters, JavaType returnType, String name, List<JavaParameter> parameters, List<String> throwTypes, List<String> lines) Constructs a new Java Method with the given parameters -
Uses of JavaAnnotation in com.github.tadukoo.java.parsing.codetypes
Methods in com.github.tadukoo.java.parsing.codetypes that return JavaAnnotationModifier and TypeMethodDescriptionstatic JavaAnnotationJavaAnnotationParser.parseAnnotation(String content) Parses the given text into anannotationif possible, or returns null