Class StyleReaderContainer

java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.StyleReaderContainer

public class StyleReaderContainer extends Object
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
  • 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

      public void addStyleComponent(AbstractStyle component)
      Adds a style component and determines the appropriate type of it automatically
      Parameters:
      component - Style component to add to the collections
    • getStyle

      public Style getStyle(String index)
      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

      public StyleReaderContainer.StyleResult evaluateDateTimeStyle(int index)
      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

      public NumberFormat getNumberFormat(int index)
      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

      public Border getBorder(int index)
      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

      public Fill getFill(int index)
      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

      public Font getFont(int index)
      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)