Uses of Interface
jakarta.enterprise.lang.model.AnnotationTarget
-
Packages that use AnnotationTarget Package Description jakarta.enterprise.inject.build.compatible.spi The build compatible extension SPI.jakarta.enterprise.lang.model.declarations Interfaces that represent declarations.jakarta.enterprise.lang.model.types Interfaces that represent types. -
-
Uses of AnnotationTarget in jakarta.enterprise.inject.build.compatible.spi
Methods in jakarta.enterprise.inject.build.compatible.spi with parameters of type AnnotationTarget Modifier and Type Method Description void
Messages. error(java.lang.String message, AnnotationTarget relatedTo)
Add an error which is related to givenAnnotationTarget
(which is most likely aDeclarationInfo
).void
Messages. info(java.lang.String message, AnnotationTarget relatedTo)
Add an information message which is related to givenAnnotationTarget
(which is most likely aDeclarationInfo
).void
Messages. warn(java.lang.String message, AnnotationTarget relatedTo)
Add a warning which is related to givenAnnotationTarget
(which is most likely aDeclarationInfo
). -
Uses of AnnotationTarget in jakarta.enterprise.lang.model.declarations
Subinterfaces of AnnotationTarget in jakarta.enterprise.lang.model.declarations Modifier and Type Interface Description interface
ClassInfo
A class.interface
DeclarationInfo
A declaration is an element of a program source code.interface
FieldInfo
A field, declared in some class.interface
MethodInfo
A method or a constructor, declared in some class.interface
PackageInfo
A package, possibly annotated inpackage-info.java
.interface
ParameterInfo
A method parameter or a constructor parameter, declared in some method or constructor.interface
RecordComponentInfo
A record component, declared in some record. -
Uses of AnnotationTarget in jakarta.enterprise.lang.model.types
Subinterfaces of AnnotationTarget in jakarta.enterprise.lang.model.types Modifier and Type Interface Description interface
ArrayType
An array type is created from a component type.interface
ClassType
A class type, including interface types, enum types, annotation types and record types.interface
ParameterizedType
A parameterized type.interface
PrimitiveType
Primitive types are: boolean byte short int long float double charinterface
Type
A type is used in a program source code, but does not have to be declared anywhere.interface
TypeVariable
Type variables represent type parameters declared on generic classes or methods.interface
VoidType
Thevoid
pseudo-type.interface
WildcardType
A wildcard type.
-