* @throws FileNotFoundException
* FileNotFoundException
*/
public static FileLinesIterable readFileLinesIteration(File file) throws FileNotFoundException {
FileLinesIterable result = new FileLinesIterable();
result.openFile(file);
return result;
}
/**
* Opens a file and iterates over all the lines.