You could just go to Google and you will find many solutions. But here is the code:
for(LogConf element : myEmpls) {
System.out.println(element.getValue());
}
You should also get used to determining the type of items in the list:
List<LogConf> myEmpls = new ArrayList<LogConf>();
Prine source
share