Poniżej znajduje się kod adnotacji
public @interface ColumnName {
String value();
String datatype();
}
Chciałbym na przykład podać datatype
opcjonalny parametr
@ColumnName(value="password")
powinien być prawidłowym kodem.
Odpowiedzi:
Wygląda na to, że pierwszy przykład w oficjalnej dokumentacji mówi wszystko ...
/**
* Describes the Request-For-Enhancement(RFE) that led
* to the presence of the annotated API element.
*/
public @interface RequestForEnhancement {
int id();
String synopsis();
String engineer() default "[unassigned]";
String date() default "[unimplemented]";
}
Class<?>
s?
Class<?> proxy() default Object.class
Aby uczynić go opcjonalnym, możesz przypisać mu domyślną wartość w następujący sposób:
public @interface ColumnName {
String value();
String datatype() default "String";
}
Wtedy nie trzeba go określać podczas korzystania z adnotacji.