Interface CSVFieldFormatter


public interface CSVFieldFormatter
Main Interface for a CSV field formatter. This interface needs to be implemented by the actual formatter implementations in order to be recognized by the Framework.

Default implementations are available for common formatting requirements in the Framework, and are present in this package. See the package overview for details.

Since:
1.8
Version:
$Revision$
Author:
Anupam Sengupta
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    format(String value)
    Formats the specified CSV field value and returns the formatted result.
  • Method Details

    • format

      Object format(String value)
      Formats the specified CSV field value and returns the formatted result.
      Parameters:
      value - the CSV field value to format
      Returns:
      the formatted result (need not be a String)