Код: Выделить всё
Set names = new HashSet();
//some code
for (String name: names) {
//some code
}
Подробнее здесь: https://stackoverflow.com/questions/415 ... -iteration
Код: Выделить всё
Set names = new HashSet();
//some code
for (String name: names) {
//some code
}