public Iterator<Object[]> asParametersFor(Method method) {
return new GridRowIterator<Object[]>(grid, new MethodParameterRowConverter(method));
}
public Iterator<List<String>> asStringLists() {
return new GridRowIterator<List<String>>(grid, new StringListRowConverter());
}