Class StyleManager

java.lang.Object
ch.rabanti.nanoxlsx4j.styles.StyleManager

public class StyleManager extends Object
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
Author:
Raphael Stockeli
  • Constructor Details

    • StyleManager

      public StyleManager()
      Default constructor
  • Method Details

    • getBorders

      public Border[] 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

      public Fill[] 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

      public Font[] 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

      public NumberFormat[] getNumberFormats()
      Gets all number formats of the style manager
      Returns:
      Array of number formats
    • getStyles

      public Style[] 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

      public Style addStyle(Style style)
      Adds a style component to the manager
      Parameters:
      style - Style to add
      Returns:
      Added or determined style in the manager
    • getManagedStyles

      public static StyleManager getManagedStyles(Workbook workbook)
      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