public annotation Target:
Restricts the kind of declaration an annotation can target.
| Modifier and Type | Member | Description |
|---|---|---|
| public const | FIELDFIELD as String = "FIELD" |
Annotation target for fields. |
| public const | METHODMETHOD as String = "METHOD" |
Annotation target for methods and constructors. |
| public const | PARAMETERPARAMETER as String = "PARAMETER" |
Annotation target for parameters. |
| public const | PROPERTYPROPERTY as String = "PROPERTY" |
Annotation target for properties. |
| public const | TYPETYPE as String = "TYPE" |
Annotation target for classes, interfaces, enums and annotations. |