@Documented
@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface ElementsIntoSet
Set<T>
and all values are contributed to the set. The Set<T>
produced from the accumulation of values will be immutable. An example use is to provide
a default empty set binding, which is otherwise not possible using IntoSet
.