Enumeration を使用して特定のリクエスト パラメータをスキップしたい。以下のコードを使用しましたが、望ましい結果が得られませんでした。列挙型から要素をスキップする方法や、以下のコードの問題点を教えてください。
for (Enumeration<String> e = request.getParameterNames(); e.hasMoreElements();) {
if("James".equalsIgnoreCase(e.nextElement().toString())) {
e.nextElement();
continue;
} else {
list.add(e.nextElement().toString());
}
}