Annotation Type CsvFileSource

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String[] resources
      The CSV classpath resources to use as the sources of arguments; must not be empty.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      char delimiter
      The column delimiter to use when reading the CSV files.
      String encoding
      The encoding to use when reading the CSV files; must be a valid charset.
      String lineSeparator
      The line separator to use when reading the CSV files; must consist of 1 or 2 characters.
      int numLinesToSkip
      The number of lines to skip when reading the CSV files.
    • Element Detail

      • resources

        String[] resources
        The CSV classpath resources to use as the sources of arguments; must not be empty.
      • encoding

        String encoding
        The encoding to use when reading the CSV files; must be a valid charset.

        Defaults to "UTF-8".

        See Also:
        StandardCharsets
        Default:
        "UTF-8"
      • lineSeparator

        String lineSeparator
        The line separator to use when reading the CSV files; must consist of 1 or 2 characters.

        Defaults to "\n".

        Default:
        "\n"
      • delimiter

        char delimiter
        The column delimiter to use when reading the CSV files.

        Defaults to ",".

        Default:
        ','
      • numLinesToSkip

        int numLinesToSkip
        The number of lines to skip when reading the CSV files.

        Typically used to skip header lines.

        Defaults to 0.

        Default:
        0