Annotation Processor:
*Types of Annotations
There are three types of annotations.
@interface CustomAnnotation {}
@interface CustomAnnotation {
int value();
}
@interface CustomAnnotation{
int value1();
String value2();
String value3();
}