Код: Выделить всё
public static final ImmutableSet COLOR_NAMES = ImmutableSet.of(
"red",
"orange",
"yellow",
"green",
"blue",
"purple");
class Foo {
Set bars;
Foo(Set bars) {
this.bars = ImmutableSet.copyOf(bars); // defensive copy!
}
}
PS: Этот вопрос добавил в мою голову еще больше хаоса!
Подробнее здесь: https://stackoverflow.com/questions/159 ... -java-enum