@Target(value={ANNOTATION_TYPE,PARAMETER,TYPE_USE})
@Retention(value=RUNTIME)
@Size(min=1)
@StringLength(min=1)
@Documented
public @interface NotEmpty
Constrain the size of generated "sizable" types to be at least 1.
Applies to String, List, Set, Stream, and arrays which are also annotated with @ForAll.
Can be combined with @Size(max=XXX) or @StringLength(max=XXX).