當前位置: 首頁>>代碼示例>>Java>>正文


Java JSONObject.getDoubleValue方法代碼示例

本文整理匯總了Java中com.alibaba.fastjson.JSONObject.getDoubleValue方法的典型用法代碼示例。如果您正苦於以下問題:Java JSONObject.getDoubleValue方法的具體用法?Java JSONObject.getDoubleValue怎麽用?Java JSONObject.getDoubleValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.alibaba.fastjson.JSONObject的用法示例。


在下文中一共展示了JSONObject.getDoubleValue方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: drag

import com.alibaba.fastjson.JSONObject; //導入方法依賴的package包/類
private static boolean drag(JSONObject args) throws Exception {
    String elementId = args.getString("element");
    Double fromX = args.getDouble("fromX");
    Double fromY = args.getDouble("fromY");
    Double toX = args.getDouble("toX");
    Double toY = args.getDouble("toY");
    double duration = args.getDoubleValue("duration");
    int steps = (int) Math.round(duration * 40);
    if (elementId != null) {
        Element el = elements.getElement(elementId);
        return el.drag(toX.intValue(), toY.intValue(), steps);
    } else {
        boolean res = mDevice.drag(fromX.intValue(), fromY.intValue(), toX.intValue(), toY.intValue(), steps);
        Thread.sleep(steps * 100);
        return res;
    }
}
 
開發者ID:macacajs,項目名稱:UIAutomatorWD,代碼行數:18,代碼來源:ActionController.java

示例2: press

import com.alibaba.fastjson.JSONObject; //導入方法依賴的package包/類
private static boolean press(JSONObject args) throws Exception {
    String elementId = args.getString("element");
    double duration = args.getDoubleValue("duration");
    int steps = (int) Math.round(duration * 40);
    if (elementId != null) {
        Element el = elements.getElement(elementId);
        Rect elRect = el.getUiObject().getVisibleBounds();
        return mDevice.swipe(elRect.centerX(), elRect.centerY(),  elRect.centerX(), elRect.centerY(), steps);
    } else {
        int x = args.getInteger("x");
        int y = args.getInteger("y");
        return mDevice.swipe(x, y, x, y, steps);
    }
}
 
開發者ID:macacajs,項目名稱:UIAutomatorWD,代碼行數:15,代碼來源:ActionController.java


注:本文中的com.alibaba.fastjson.JSONObject.getDoubleValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。