public interface SasFileReader
| Modifier and Type | Method and Description |
|---|---|
List<Column> |
getColumns()
The function to get the
Column list from SasFileReader. |
List<Column> |
getColumns(List<String> columnNames)
The function to get the
Column list from SasFileReader
according to the columnNames. |
Integer |
getOffset()
The function to return the index of the current row when reading the sas7bdat file.
|
SasFileProperties |
getSasFileProperties()
The function to get sas file properties.
|
Object[][] |
readAll()
Reads all rows from the sas7bdat file.
|
Object[][] |
readAll(List<String> columnNames)
Reads all rows from the sas7bdat file.
|
Object[] |
readNext()
Reads rows one by one from the sas7bdat file.
|
Object[] |
readNext(List<String> columnNames)
Reads rows one by one from the sas7bdat file.
|
List<Column> getColumns()
Column list from SasFileReader.List<Column> getColumns(List<String> columnNames)
Column list from SasFileReader
according to the columnNames.columnNames - - list of column names which should be returned.Object[][] readAll()
Object[][] readAll(List<String> columnNames)
columnNames - list of column names which should be processed.Object[] readNext() throws IOException
IOException - if reading input stream is impossible.Object[] readNext(List<String> columnNames) throws IOException
columnNames - list of column names which should be processed.IOException - if reading input stream is impossible.SasFileProperties getSasFileProperties()
SasFileProperties class that stores file metadata.Integer getOffset()
Copyright © 2021. All rights reserved.