Provide Incremental in For-Statement or use while-statement (PIFS)

Description:

PIIFS checks if third argument of the for-statement is missing.

Example:

   for ( Enumeration enum = getEnum(); enum.hasMoreElements(); ){
       Object o = enum.nextElement();
       doSomeProc(o);
   }