com.qiniu.interfaces.ITextReader Maven / Gradle / Ivy
package com.qiniu.interfaces;
import java.io.IOException;
import java.util.List;
public interface ITextReader {
String getName();
List readLines() throws IOException;
String currentEndLine();
long count();
void close();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy