yoavst
11/14/2015, 8:56 AMpublic @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")