Given this Code
import java.util.Iterator; private static List someList = new ArrayList(); public static void main(Strin
check your import statement proper it may be possible that you have already import iterator that comes from another packages first organize your imports delete those imports and add
import java.util.Iterator;
hope it will works for you