Java org.apache.commons.io LineIterator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io LineIterator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io LineIterator.

The text is from its open source code.

Subclass

org.apache.commons.io.LineIterator has subclasses.
Click this link to see all its subclasses.

Constructor

LineIterator(final Reader reader)
Constructs an iterator of the lines for a Reader.

Method

voidclose()
Closes the underlying Reader quietly.
voidcloseQuietly(LineIterator iterator)
Closes the iterator, handling null and ignoring exceptions.
booleanhasNext()
Indicates whether the Reader has more lines.
Objectnext()
Returns the next line in the wrapped Reader.
StringnextLine()
Returns the next line in the wrapped Reader.
voidremove()
Unsupported.