Package net.java.sezpoz
Annotation Type Indexable
-
@Retention(RUNTIME) @Target(ANNOTATION_TYPE) public @interface Indexable
Marker for an annotation type which can be indexed. You can then useIndex
to find all annotated elements together with the annotations without necessarily loading any classes.The annotation may use any
RetentionPolicy
and must permit targets of typeElementType.TYPE
,ElementType.METHOD
, orElementType.FIELD
(but no others). It should not beInherited
.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.Class<?>
type
Optional indication of a type to which the resolved instance must be assignable.
-