```public @interface JsonField { String[] name...
# announcements
y
Copy code
public @interface JsonField {
    String[] name() default {};

    Class typeConverter() default void.class;
}
Is there a shorter way from
@JsonField(name = arrayOf("fieldName"))
? According to the doc I should be able to write
@AnnWithArrayValue("abc", "foo", "bar")