public String getTapActionByCoordinates(
     String name, int x, int y, int width, int height, boolean singleTap) {
   return TapZoneMap.zoneMap(name)
       .getActionByCoordinates(
           x,
           y,
           width,
           height,
           singleTap ? TapZoneMap.Tap.singleNotDoubleTap : TapZoneMap.Tap.doubleTap);
 }
 public void setTapZoneAction(String name, int h, int v, boolean singleTap, String action) {
   TapZoneMap.zoneMap(name).setActionForZone(h, v, singleTap, action);
 }
 public void deleteZoneMap(String name) throws ApiException {
   TapZoneMap.deleteZoneMap(name);
 }
 public String getTapZoneAction(String name, int h, int v, boolean singleTap) {
   return TapZoneMap.zoneMap(name)
       .getActionByZone(
           h, v, singleTap ? TapZoneMap.Tap.singleNotDoubleTap : TapZoneMap.Tap.doubleTap);
 }
 public boolean isZoneMapCustom(String name) throws ApiException {
   return TapZoneMap.zoneMap(name).isCustom();
 }
 public void createZoneMap(String name, int width, int height) {
   TapZoneMap.createZoneMap(name, width, height);
 }
 public int getZoneMapWidth(String name) {
   return TapZoneMap.zoneMap(name).getWidth();
 }
 public int getZoneMapHeight(String name) {
   return TapZoneMap.zoneMap(name).getHeight();
 }
 public List<String> listZoneMaps() {
   return TapZoneMap.zoneMapNames();
 }