Class CsvConfiguration

    • Method Detail

      • columnSeparator

        public final String columnSeparator()

        Column separator can be one of comma (','), pipe ('|), semicolon (';'), tab('/t'), or blank space (' ').

        Returns:
        Column separator can be one of comma (','), pipe ('|), semicolon (';'), tab('/t'), or blank space (' ').
      • escapeChar

        public final String escapeChar()

        Escape character can be one of

        Returns:
        Escape character can be one of
      • quoteChar

        public final String quoteChar()

        Can be single quote (') or double quote (").

        Returns:
        Can be single quote (') or double quote (").
      • nullValue

        public final String nullValue()

        Can be blank space (' ').

        Returns:
        Can be blank space (' ').
      • trimWhiteSpace

        public final Boolean trimWhiteSpace()

        Specifies to trim leading and trailing white space.

        Returns:
        Specifies to trim leading and trailing white space.
      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public final boolean equals​(Object obj)
        Overrides:
        equals in class Object
      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)