public interface IteratorFromReaderFactory<T>
extends Serializable
An IteratorFromReaderFactory is used to convert a java.io.Reader
into an Iterator over the Objects of type T represented by the text
in the java.io.Reader.
(We have it be Serializable just to avoid non-serializable warnings;
since implementations of this class normally have no state, they
should be trivially serializable.)