0
I own a ArrayList
which has other ArrayList
within it, I got through the following scrip on Groovy:
def i0 = listaTransportadoras.get([0]);
def i1 = listaTransportadoras.get(1);
logger.info(i0.toString());
logger.info(i1.toString());
Select the 1st and 2nd array that are inside this main array, but I need to get the indices that are inside each of these "subarrays", if you have an idea thank you.
I posted an answer to show how I solved my problem, but thanks for the feedback
– R.Santos