Package ch.rabanti.nanoxlsx4j.lowLevel
Class WorksheetReader
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.WorksheetReader
Class representing a reader for worksheets of XLSX files
- Author:
- Raphael Stoeckli
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Class represents information about pane splitting -
Constructor Summary
ConstructorsConstructorDescriptionWorksheetReader
(SharedStringsReader sharedStrings, StyleReaderContainer styleReaderContainer, ImportOptions options) Constructor with parameters and import options -
Method Summary
Modifier and TypeMethodDescriptionconvertDoubleToInt
(Object data) gets the auto filter rangeGets a list of defined Columnsint
Gets the zoom factor of the current view typegetData()
Gets the data of the worksheet as Hashmap of cell address-cell object tuplesGets the default column widthGets the default row heightGets a list of merged cellsGets the definition of pane split-related informationgetRows()
Gets a map of row definitionsGets the selected cell ranges (panes are currently not considered)Gets the assignment of resolved styles to cell addressesGets the sheet view type of the current worksheetGets the applicable worksheet protection valuesGets the (legacy) password hash of a worksheet if protection values are applied with a passwordGets all preserved zoom factors of the worksheetboolean
Gets whether grid lines are shownboolean
Gets whether column and row headers are shownboolean
Gets whether rulers are shown in view type: pageLayoutvoid
read
(InputStream stream) Reads the XML file form the passed stream and processes the worksheet data
-
Constructor Details
-
Method Details
-
getData
Gets the data of the worksheet as Hashmap of cell address-cell object tuples- Returns:
- Hashmap of cell address-cell object tuples
-
getStyleAssignment
Gets the assignment of resolved styles to cell addresses- Returns:
- Map of cell address-style number tuples
-
getAutoFilterRange
gets the auto filter range- Returns:
- Auto filter range if defined, otherwise null
-
getColumns
Gets a list of defined Columns- Returns:
- List of columns
-
getDefaultColumnWidth
Gets the default column width- Returns:
- Default column width if defined, otherwise null
-
getDefaultRowHeight
Gets the default row height- Returns:
- Default row height if defined, otherwise null
-
getRows
Gets a map of row definitions- Returns:
- Map of row definitions, where the key is the row number and the value is an instance of
WorksheetReader.RowDefinition
-
getMergedCells
Gets a list of merged cells- Returns:
- List of Range definitions
-
getSelectedCells
Gets the selected cell ranges (panes are currently not considered)- Returns:
- Selected cell ranges if defined, otherwise null
-
getWorksheetProtection
Gets the applicable worksheet protection values- Returns:
- Map of
Worksheet.SheetProtectionValue
objects
-
getWorksheetProtectionHash
Gets the (legacy) password hash of a worksheet if protection values are applied with a password- Returns:
- Hash value as string or null / empty if not defined
-
getPaneSplitValue
Gets the definition of pane split-related information- Returns:
- PaneDefinition object
-
isShowingGridLines
public boolean isShowingGridLines()Gets whether grid lines are shown- Returns:
- True if grid lines are visible
-
isShowingRowColHeaders
public boolean isShowingRowColHeaders()Gets whether column and row headers are shown- Returns:
- True if column and row header are visible
-
isShowingRuler
public boolean isShowingRuler()Gets whether rulers are shown in view type: pageLayout- Returns:
- True if rules are visible
-
getViewType
Gets the sheet view type of the current worksheet- Returns:
- Current view type
-
getCurrentZoomScale
public int getCurrentZoomScale()Gets the zoom factor of the current view type- Returns:
- Current zoom scale
-
getZoomFactors
Gets all preserved zoom factors of the worksheet- Returns:
- Map of all zoom factors of the current worksheet
-
read
Reads the XML file form the passed stream and processes the worksheet data- Parameters:
stream
- Stream of the XML file- Throws:
IOException
- thrown if the document could not be read
-
convertDoubleToInt
-