Im having this following loop
for (Annotation currAnnotation : annotation.getAnnotations())
{
List<Map<String, String>> list = annotation.getList();
list.get(index)
the index should be the index of the loop,how can I achieve it ?
I need to get from the list the specific entry.
Thanks!
You can use a counter: