Package ch.rabanti.nanoxlsx4j.lowLevel
Class StyleReaderContainer
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.StyleReaderContainer
Class representing a collection of pre-processed styles and their components. This class is internally used and
should not be used otherwise.
- Author:
- Raphael Stoeckli
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Result class regarding date and time styles -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addStyleComponent
(AbstractStyle component) Adds a style component and determines the appropriate type of it automaticallyevaluateDateTimeStyle
(int index) Returns a whole style by its index.getBorder
(int index) Returns a border component by its indexgetFill
(int index) Returns a fill component by its indexgetFont
(int index) Returns a font component by its indexint
Gets the next internal id of a border component.
The method is currently not used but prepared for usage when the style reader is fully implementedint
Gets the next internal id of a cell XF component.
The method is currently not used but prepared for usage when the style reader is fully implementedint
Gets the next internal id of a fill component.
The method is currently not used but prepared for usage when the style reader is fully implementedint
Gets the next internal id of a font component.
The method is currently not used but prepared for usage when the style reader is fully implementedint
Gets the next internal id of a number format componentint
Gets the next internal id of a stylegetNumberFormat
(int index) Returns a number format component by its indexReturns a whole style by its indexint
Gets the number of resolved styles
-
Constructor Details
-
StyleReaderContainer
public StyleReaderContainer()
-
-
Method Details
-
getStyleCount
public int getStyleCount()Gets the number of resolved styles- Returns:
- Number of style entries in the container
-
addStyleComponent
Adds a style component and determines the appropriate type of it automatically- Parameters:
component
- Style component to add to the collections
-
getStyle
Returns a whole style by its index- Parameters:
index
- Index of the style- Returns:
- Style object or null if the component could not be retrieved
-
evaluateDateTimeStyle
Returns a whole style by its index. It also returns information about the type of the style, regarding dates or times- Parameters:
index
- Index of the style- Returns:
- Style object or null if the component could not be retrieved
-
getNumberFormat
Returns a number format component by its index- Parameters:
index
- Internal index of the style component- Returns:
- Style component or null if the component could not be retrieved
- Throws:
StyleException
- Thrown if the component was not found
-
getBorder
Returns a border component by its index- Parameters:
index
- Internal index of the style component- Returns:
- Style component or null if the component could not be retrieved
-
getFill
Returns a fill component by its index- Parameters:
index
- Internal index of the style component- Returns:
- Style component or null if the component could not be retrieved
-
getFont
Returns a font component by its index- Parameters:
index
- Internal index of the style component- Returns:
- Style component or null if the component could not be retrieved
-
getNextStyleId
public int getNextStyleId()Gets the next internal id of a style- Returns:
- Next id of styles (collected in this class)
-
getNextCellXFId
public int getNextCellXFId()Gets the next internal id of a cell XF component.
The method is currently not used but prepared for usage when the style reader is fully implemented- Returns:
- Next id of the component type (collected in this class)
-
getNextNumberFormatId
public int getNextNumberFormatId()Gets the next internal id of a number format component- Returns:
- Next id of the component type (collected in this class)
-
getNextBorderId
public int getNextBorderId()Gets the next internal id of a border component.
The method is currently not used but prepared for usage when the style reader is fully implemented- Returns:
- Next id of the component type (collected in this class)
-
getNextFillId
public int getNextFillId()Gets the next internal id of a fill component.
The method is currently not used but prepared for usage when the style reader is fully implemented- Returns:
- Next id of the component type (collected in this class)
-
getNextFontId
public int getNextFontId()Gets the next internal id of a font component.
The method is currently not used but prepared for usage when the style reader is fully implemented- Returns:
- Next id of the component type (collected in this class)
-