Ensure that upon processing a CSV file (reading or writing), that values of the column all are unique. Comparison is based upon each elements
equals() method of the objects and lookup takes O(1).
Compared to {@link UniqueHashCode} this processor potentially uses more memory, as it stores references to eachencountered object rather than just their hashcodes. On reading huge files this can be a real memory-hazard, however, it ensures a true uniqueness check.
@since 1.50
@author Kasper B. Graversen
@author Dominique De Vito