A transform for converting a String to a OrderedCollectionInterface.
This works by tokenizing the input. Data that looks like an int
is converted to a Integer; long ints are converted
to Long objects;
floating point values are converted to Double objects,
true/false are converted
to Boolean,
character literals are converted to a Character object,
and pretty much everything else is converted to a String.
StringToOrderedCollectionInterfaceTransform(char delimiter,
com.sas.collection.OrderedCollectionInterface collection)
Construct a transform which uses a specific delimiter.