Hi,
Can we add some more constructor in backtype.storm.tuple.Values class which are
already present in ArrayList class. Some examples are below
public Values(int initialCapacity) {
super(initialCapacity);
}
This will help us in some performance management if we know what size the list
going to be.
public Values(Collection<? extends Object> c) {
super(c);
}
This will allow us the addling predefined list to values instead of manually
iterating over it. We cannot use Values(Object... vals) as it treat list of
element as one element
Thanks,
Sachin