for (Entry<String, Data> entry : list.entrySet()) {
if(entry.getValue().getRoom() == 1){
if(entry.getValue().getName().equalsIgnoreCase("RED")){
entry.getValue().getPosition() // need to get the lowest free number
// between the range of 1-6
}
}
}
How to get the lowest free spot of the getPosition in this situation. getPosition values are between 1-6 and there are only one of each value Room = 1 and Name = RED. For example if 1,3,4,6 exists in getPosition(with room=1 and name=red) then the output should be 2. That is the lowest number that is free in getPosition in the specific combination. Hope u can help me out.