Uses of Class
adams.data.io.input.AbstractTextReader
-
Packages that use AbstractTextReader Package Description adams.core.io.fileuse adams.data.io.input adams.flow.transformer -
-
Uses of AbstractTextReader in adams.core.io.fileuse
Fields in adams.core.io.fileuse declared as AbstractTextReader Modifier and Type Field Description protected AbstractTextReader
TextReader. m_Reader
the text reader to use.Methods in adams.core.io.fileuse that return AbstractTextReader Modifier and Type Method Description AbstractTextReader
TextReader. getReader()
Returns the text reader to use for checking the file use.Methods in adams.core.io.fileuse with parameters of type AbstractTextReader Modifier and Type Method Description void
TextReader. setReader(AbstractTextReader value)
Sets the text reader to use for checking the file use. -
Uses of AbstractTextReader in adams.data.io.input
Subclasses of AbstractTextReader in adams.data.io.input Modifier and Type Class Description class
AbstractCompressedTextReader
Ancestor for text readers of compressed files.class
AbstractTextReaderWithEncoding<T>
Ancestor for text readers that support file encodings.class
Bzip2TextFileReader
Reads content from bzip2 compressed text files.class
GzippedTextFileReader
Reads content from gzipped text files.class
LineArrayTextReader
Reads the text in as array of strings (each line is an array element).
For large files, the data can be 'chunked' (ie outputting it in blocks).class
LineByLineTextReader
Reads the text data, line by line.class
LzfTextFileReader
Reads content from LZF compressed text files.class
LzmaTextFileReader
Reads content from LZMA compressed text files.class
SingleStringTextReader
Reads all text data into a single string and returns that
class
XzTextFileReader
Reads content from XZ compressed text files.class
ZstdTextFileReader
Reads content from ZStd compressed text files.Fields in adams.data.io.input declared as AbstractTextReader Modifier and Type Field Description protected AbstractTextReader
AbstractCompressedTextReader. m_TextReader
the reader for reading the decompressed content.Methods in adams.data.io.input that return AbstractTextReader Modifier and Type Method Description protected AbstractTextReader
AbstractCompressedTextReader. getDefaultTextReader()
Returns the default text reader to use.AbstractTextReader
AbstractCompressedTextReader. getTextReader()
Returns the reader.Methods in adams.data.io.input with parameters of type AbstractTextReader Modifier and Type Method Description void
AbstractCompressedTextReader. setTextReader(AbstractTextReader value)
Sets the reader. -
Uses of AbstractTextReader in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractTextReader Modifier and Type Field Description protected AbstractTextReader
TextFileReader. m_Reader
the reader to use.Methods in adams.flow.transformer that return AbstractTextReader Modifier and Type Method Description AbstractTextReader
TextFileReader. getReader()
Returns the reader.Methods in adams.flow.transformer with parameters of type AbstractTextReader Modifier and Type Method Description void
TextFileReader. setReader(AbstractTextReader value)
Sets the reader.Constructors in adams.flow.transformer with parameters of type AbstractTextReader Constructor Description TextFileReader(AbstractTextReader reader)
Initializes with the specified reader.
-