What are the exact default values of two meta annotations (Target and Retention) in a user defined annotation?
public @interface AnnotationWithDefaultProps {
}
|
What are the exact default values of two meta annotations (Target and Retention) in a user defined annotation?
| ||||
|
feedback
|
|
According to the source code, none of them has a default value, which means you must provide it, whenever you use the annotation. The meaning of the missing annotation is defined in the javadoc: For
and for
| |||
|
feedback
|
|
Strictly speaking, there are no defaults for annotations not specified. The annotations simply aren't there. But for these two in particular, http://download.oracle.com/javase/1.5.0/docs/api/java/lang/annotation/Retention.html says
and equivalently for target,
| |||
|
feedback
|