Annotation Type ExcelCellName


  • @Retention(RUNTIME)
    @Target(FIELD)
    @Documented
    public @interface ExcelCellName
    Created by hakan on 16/03/2018
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String value
      Specifies the column name where the corresponding value is mapped from the Excel data
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String expression
      Specifies the column regular expression where the corresponding value is mapped from the Excel data
      boolean mandatoryCell
      Specifies whether the cell value of the header is required in each row.
      boolean mandatoryHeader
      Specifies whether the header is required or not.
    • Element Detail

      • value

        java.lang.String value
        Specifies the column name where the corresponding value is mapped from the Excel data
        Returns:
        column name
      • mandatoryHeader

        boolean mandatoryHeader
        Specifies whether the header is required or not.
        Returns:
        mandatory header signal. Default is false.
        Default:
        false
      • mandatoryCell

        boolean mandatoryCell
        Specifies whether the cell value of the header is required in each row.
        Returns:
        mandatory cell signal. Default is false.
        Default:
        false
      • expression

        java.lang.String expression
        Specifies the column regular expression where the corresponding value is mapped from the Excel data
        Returns:
        column regular expression
        Default:
        ""