* @param types the actual types to use, rather than getClass
* @param values the value(s) to insert
* @return a new Binder
*/
public Binder insert(int index, Class[] types, Object... values) {
return new Binder(this, new Insert(index, types, values));
}