131132133134135136137138139
* @return an iterable * @throws FileNotFoundException * FileNotFoundException */ public static FileLinesIterable readFileLinesIteration(File file) throws FileNotFoundException { FileLinesIterable result = new FileLinesIterable(); result.openFile(file); return result; }