Annotation Type IncompatibleModifiers
Annotation declaring that the target annotation is incompatible with any one of the provided
modifiers. For example, an annotation declared as:
@IncompatibleModifiers(modifier = Modifier.PUBLIC)
@interface MyAnnotation {}
</pre>
<p>will be considered illegal when used as:
<pre>
@MyAnnotation public void foo() {}
- Author:
- benyu@google.com (Jige Yu)
-
Optional Element Summary
-
Element Details
-
value
-
modifier
Modifier[] modifierThe incompatible modifiers. The annotated element is illegal with the presence of any one or more of these modifiers.Empty array has the same effect as not applying this annotation at all; duplicates are allowed but have no effect.
- Default:
{}
-
modifier()
instead