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