Annotation Interface ExcelHeaderStyle


@Retention(RUNTIME) @Target(TYPE) public @interface ExcelHeaderStyle
This annotation defines the header style of the Excel file when converting a list of objects to an Excel file
Since:
0.1.0
Author:
Mirko Benincasa
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    boolean
     
    org.apache.poi.ss.usermodel.IndexedColors
     
    org.apache.poi.ss.usermodel.HorizontalAlignment
     
    org.apache.poi.ss.usermodel.VerticalAlignment
     
  • Element Details

    • cellColor

      org.apache.poi.ss.usermodel.IndexedColors cellColor
      Returns:
      the background color of the cell. The default is IndexedColors.GREY_50_PERCENT
      Default:
      GREY_50_PERCENT
    • horizontal

      org.apache.poi.ss.usermodel.HorizontalAlignment horizontal
      Returns:
      the horizontal orientation of the text in the cell. The default is HorizontalAlignment.LEFT
      Default:
      LEFT
    • vertical

      org.apache.poi.ss.usermodel.VerticalAlignment vertical
      Returns:
      the vertical orientation of the text in the cell. The default is VerticalAlignment.TOP
      Default:
      TOP
    • autoSize

      boolean autoSize
      Returns:
      true if the autosize rules should be applied, otherwise false. The default is false
      Default:
      false