Package ch.rabanti.nanoxlsx4j.styles
Class StyleManager
java.lang.Object
ch.rabanti.nanoxlsx4j.styles.StyleManager
Class representing a style manager to maintain all styles and its components of a workbook.
This class is only internally used to compose the style environment right before saving an XLSX file
This class is only internally used to compose the style environment right before saving an XLSX file
- Author:
- Raphael Stockeli
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds a style component to the managerBorder[]
Gets all borders of the style managerint
Gets the number of borders in the style managerFill[]
getFills()
Gets all fills of the style managerint
Gets the number of fills in the style managerFont[]
getFonts()
Gets all fonts of the style managerint
Gets the number of fonts in the style managerstatic StyleManager
getManagedStyles
(Workbook workbook) Method to gather all styles of the cells in all worksheetsGets all number formats of the style managerint
Gets the number of styles in the style managerStyle[]
Gets all styles of the style manager
-
Constructor Details
-
StyleManager
public StyleManager()Default constructor
-
-
Method Details
-
getBorders
Gets all borders of the style manager- Returns:
- Array of borders
-
getBorderStyleNumber
public int getBorderStyleNumber()Gets the number of borders in the style manager- Returns:
- Number of stored borders
-
getFills
Gets all fills of the style manager- Returns:
- Array of fills
-
getFillStyleNumber
public int getFillStyleNumber()Gets the number of fills in the style manager- Returns:
- Number of stored fills
-
getFonts
Gets all fonts of the style manager- Returns:
- Array of fonts
-
getFontStyleNumber
public int getFontStyleNumber()Gets the number of fonts in the style manager- Returns:
- Number of stored fonts
-
getNumberFormats
Gets all number formats of the style manager- Returns:
- Array of number formats
-
getStyles
Gets all styles of the style manager- Returns:
- Array of styles
-
getStyleNumber
public int getStyleNumber()Gets the number of styles in the style manager- Returns:
- Number of stored styles
-
addStyle
Adds a style component to the manager- Parameters:
style
- Style to add- Returns:
- Added or determined style in the manager
-
getManagedStyles
Method to gather all styles of the cells in all worksheets- Parameters:
workbook
- Workbook to get all cells with possible style definitions- Returns:
- StyleManager object, to be processed by the save methods
-