Klasse CSV<T>

Alle implementierten Schnittstellen:
Serializable, Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess
Bekannte direkte Unterklassen:
CSVBoolean, CSVBytes, CSVCharacter, CSVDate, CSVDouble, CSVFloat, CSVInteger, CSVShort, CSVString, CSVUnsignedIntegerFourBytes, CSVUnsignedIntegerOneByte, CSVUnsignedIntegerTwoBytes, CSVURI

public abstract class CSV<T> extends ArrayList<T>
Transforms a state variable value from/to strings of comma-separated elements.

A concrete implementation of this interface knows how to transform values of the declared type into a string of comma-separated list of elements, and how to read such strings back into individual values.

Your action method returns a CSV<...> instance as an output argument. It can also accept a concrete subclass of this type as an input argument, e.g. CSVString. This type extends a regular List, so within your action method you can handle the elements as usual.

Autor:
Christian Bauer
Siehe auch: