I have table of int[]. I have for loop with every user and I do:
int[] ids = (values) 
for (User user : listAfterProcessing) {
    if (user.getId().equals(ids)) { ... } 
}
They didnt work, Although the user id is in this table... Thanks for help :)
 
     
     
    