javax.annotation.meta
Annotation Type TypeQualifier


@Documented
@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
public @interface TypeQualifier

This qualifier is applied to an annotation to denote that the annotation should be treated as a type qualifier.


Optional Element Summary
 java.lang.Class<?> applicableTo
          Describes the kinds of values the qualifier can be applied to.
 

applicableTo

public abstract java.lang.Class<?> applicableTo
Describes the kinds of values the qualifier can be applied to. If a numeric class is provided (e.g., Number.class or Integer.class) then the annotation can also be applied to the corresponding primitive numeric types.

Default:
java.lang.Object.class