public static NSIndexPath createIndexPathForItemInSection(
     @MachineSizedSInt long item, @MachineSizedSInt long section) {
   return createIndexPathForItemInSection(ObjCClass.getByType(NSIndexPath.class), item, section);
 }
 public static NSIndexPath createIndexPathForRowInSection(
     @MachineSizedSInt long row, @MachineSizedSInt long section) {
   return createIndexPathForRowInSection(ObjCClass.getByType(NSIndexPath.class), row, section);
 }