Hi! One way could be to read as text, split(delimiter) the string and return that result.
One important thing about the current API is that it needs to know the concrete type (class) of the data elements. In your case, it might not be able to statically determine that type, because it depends on a parameter. I would suggest to use an array as the data type in such cases. Stephan
