Can you explain me why does this happen and how can I fix it please?
So I\'m using Oracle-ADF and I\'m using shuttle components. I get the selected values using the
The ArrayList returned by Arrays.asList() method is NOT java.util.ArrayList it is a static inner class inside Arrays class. So, you can't cast it to java.util.ArrayList.
ArrayList
Arrays.asList()
java.util.ArrayList
Arrays
Try converting / assigning it to a List.
List