亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jobdatamap.java

?? Quartz 是個開源的作業調度框架
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Serializable</code> object value to the <code>JobDataMap</code>.     * </p>     */    public Object put(Object key, Object value) {        if (!(key instanceof String))                throw new IllegalArgumentException(                        "Keys in map must be Strings.");        return super.put(key, value);    }    /**     * <p>     * Retrieve the identified <code>int</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not an Integer.     */    public int getInt(String key) {        Object obj = get(key);        try {            return ((Integer) obj).intValue();        } catch (Exception e) {            throw new ClassCastException("Identified object is not an Integer.");        }    }    /**     * <p>     * Retrieve the identified <code>long</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a Long.     */    public long getLong(String key) {        Object obj = get(key);        try {            return ((Long) obj).longValue();        } catch (Exception e) {            throw new ClassCastException("Identified object is not a Long.");        }    }    /**     * <p>     * Retrieve the identified <code>float</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a Float.     */    public float getFloat(String key) {        Object obj = get(key);        try {            return ((Float) obj).floatValue();        } catch (Exception e) {            throw new ClassCastException("Identified object is not a Float.");        }    }    /**     * <p>     * Retrieve the identified <code>double</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a Double.     */    public double getDouble(String key) {        Object obj = get(key);        try {            return ((Double) obj).doubleValue();        } catch (Exception e) {            throw new ClassCastException("Identified object is not a Double.");        }    }    /**     * <p>     * Retrieve the identified <code>boolean</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a Boolean.     */    public boolean getBoolean(String key) {        Object obj = get(key);        try {            return ((Boolean) obj).booleanValue();        } catch (Exception e) {            throw new ClassCastException("Identified object is not a Boolean.");        }    }    /**     * <p>     * Retrieve the identified <code>char</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a Character.     */    public char getChar(String key) {        Object obj = get(key);        try {            return ((Character) obj).charValue();        } catch (Exception e) {            throw new ClassCastException(                    "Identified object is not a Character.");        }    }    /**     * <p>     * Retrieve the identified <code>String</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public String getString(String key) {        Object obj = get(key);        try {            return (String) obj;        } catch (Exception e) {            throw new ClassCastException("Identified object is not a String.");        }    }    /**     * <p>     * Retrieve the identified <code>int</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public int getIntFromString(String key) {        Object obj = get(key);        return new Integer((String) obj).intValue();    }    /**     * <p>     * Retrieve the identified <code>int</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String or Integeger.     */    public long getIntValue(String key) {        Object obj = get(key);        if(obj instanceof String)            return getIntFromString(key);        else            return getInt(key);    }        /**     * <p>     * Retrieve the identified <code>int</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public Integer getIntegerFromString(String key) {        Object obj = get(key);        return new Integer((String) obj);    }    /**     * <p>     * Retrieve the identified <code>boolean</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public boolean getBooleanValueFromString(String key) {        Object obj = get(key);        return new Boolean((String) obj).booleanValue();    }    /**     * <p>     * Retrieve the identified <code>boolean</code> value from the      * <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String or Boolean.     */    public boolean getBooleanValue(String key) {        Object obj = get(key);        if(obj instanceof String)            return getBooleanValueFromString(key);        else            return getBoolean(key);    }    /**     * <p>     * Retrieve the identified <code>Boolean</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public Boolean getBooleanFromString(String key) {        Object obj = get(key);        return new Boolean((String) obj);    }    /**     * <p>     * Retrieve the identified <code>char</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public char getCharFromString(String key) {        Object obj = get(key);        return ((String) obj).charAt(0);    }    /**     * <p>     * Retrieve the identified <code>Character</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public Character getCharacterFromString(String key) {        Object obj = get(key);        return new Character(((String) obj).charAt(0));    }    /**     * <p>     * Retrieve the identified <code>double</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public double getDoubleValueFromString(String key) {        Object obj = get(key);        return new Double((String) obj).doubleValue();    }    /**     * <p>     * Retrieve the identified <code>double</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String or Double.     */    public double getDoubleValue(String key) {        Object obj = get(key);        if(obj instanceof String)            return getDoubleValueFromString(key);        else            return getDouble(key);    }    /**     * <p>     * Retrieve the identified <code>Double</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public Double getDoubleFromString(String key) {        Object obj = get(key);        return new Double((String) obj);    }    /**     * <p>     * Retrieve the identified <code>float</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public float getFloatValueFromString(String key) {        Object obj = get(key);        return new Float((String) obj).floatValue();    }    /**     * <p>     * Retrieve the identified <code>float</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String or Float.     */    public float getFloatValue(String key) {        Object obj = get(key);        if(obj instanceof String)            return getFloatValueFromString(key);        else            return getFloat(key);    }        /**     * <p>     * Retrieve the identified <code>Float</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public Float getFloatFromString(String key) {        Object obj = get(key);        return new Float((String) obj);    }    /**     * <p>     * Retrieve the identified <code>long</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public long getLongValueFromString(String key) {        Object obj = get(key);        return new Long((String) obj).longValue();    }    /**     * <p>     * Retrieve the identified <code>long</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String or Long.     */    public long getLongValue(String key) {        Object obj = get(key);        if(obj instanceof String)            return getLongValueFromString(key);        else            return getLong(key);    }        /**     * <p>     * Retrieve the identified <code>Long</code> value from the <code>JobDataMap</code>.     * </p>     *      * @throws ClassCastException     *           if the identified object is not a String.     */    public Long getLongFromString(String key) {        Object obj = get(key);        return new Long((String) obj);    }    public String[] getKeys() {        return (String[]) keySet().toArray(new String[size()]);    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费在线观看一区| 日本一区二区三区免费乱视频| 国产精品不卡在线观看| 99久久综合狠狠综合久久| 亚洲欧美日韩小说| 欧美日韩久久久一区| 免费成人在线播放| 久久亚洲一级片| 大尺度一区二区| 艳妇臀荡乳欲伦亚洲一区| 欧美二区乱c少妇| 国产精品一卡二卡| 亚洲视频图片小说| 在线播放91灌醉迷j高跟美女 | 亚洲高清免费观看高清完整版在线观看 | 成人黄色网址在线观看| 1024成人网| 日韩一区二区三区视频在线| 懂色av一区二区夜夜嗨| 亚洲一线二线三线久久久| 精品久久久久一区二区国产| 成人v精品蜜桃久久一区| 五月激情综合色| 国产欧美一区二区精品忘忧草| 色综合色狠狠天天综合色| 日本不卡一二三| 成人免费在线视频| 日韩视频123| 91在线观看美女| 久久精品国产成人一区二区三区| 国产精品丝袜久久久久久app| 欧美婷婷六月丁香综合色| 国产伦精品一区二区三区视频青涩| 一区二区三区四区视频精品免费 | 久久一区二区视频| 在线视频中文字幕一区二区| 国产毛片精品视频| 午夜精品在线视频一区| 欧美高清在线精品一区| 欧美成人伊人久久综合网| 色综合久久综合网97色综合| 极品少妇xxxx偷拍精品少妇| 亚洲一区二区三区小说| 中文无字幕一区二区三区| 欧美一区二区三区四区在线观看| 97超碰欧美中文字幕| 国产精品亚洲成人| 麻豆精品在线视频| 午夜精品123| 洋洋成人永久网站入口| 亚洲欧美中日韩| 久久精品一二三| 欧美成人精品高清在线播放| 欧美人与禽zozo性伦| 色偷偷成人一区二区三区91 | 91小视频在线| 国产成人午夜精品影院观看视频| 美脚の诱脚舐め脚责91| 午夜精品福利一区二区三区av| 亚洲精选视频免费看| 国产精品久久久久婷婷| 欧美激情自拍偷拍| 国产性做久久久久久| 精品国产乱子伦一区| 欧美精品九九99久久| 欧美在线免费观看视频| 色天天综合久久久久综合片| 91在线视频免费观看| av在线一区二区| 成人av在线影院| av不卡在线播放| 播五月开心婷婷综合| 99久久99久久综合| 99麻豆久久久国产精品免费 | 欧美色爱综合网| 欧美色图一区二区三区| 欧美在线看片a免费观看| 在线视频欧美精品| 欧美三级午夜理伦三级中视频| 欧美自拍偷拍一区| 欧美色网一区二区| 7777精品久久久大香线蕉| 91麻豆精品国产无毒不卡在线观看| 欧美日韩国产免费| 日韩一区二区三区精品视频| 精品国产91洋老外米糕| 久久精品一二三| 中文字幕亚洲在| 亚洲制服丝袜在线| 日日摸夜夜添夜夜添精品视频| 蜜臀国产一区二区三区在线播放 | 国产精品99久久久久| 成人在线综合网站| 91片黄在线观看| 欧美日韩国产成人在线免费| 欧美电影精品一区二区| 国产欧美视频在线观看| 亚洲视频在线观看一区| 亚洲成人精品影院| 美脚の诱脚舐め脚责91| 成人午夜视频免费看| 色成人在线视频| 日韩亚洲国产中文字幕欧美| 久久精品视频免费| 亚洲一二三四久久| 久久av资源网| 一本久久综合亚洲鲁鲁五月天| 欧美日韩国产美| 欧美激情资源网| 亚洲成a人片综合在线| 韩国v欧美v日本v亚洲v| 一本大道久久a久久综合婷婷| 欧美久久久一区| 欧美韩国日本一区| 亚洲成人免费观看| 国产a区久久久| 欧美日韩免费不卡视频一区二区三区| 欧美大黄免费观看| 亚洲人吸女人奶水| 韩国v欧美v日本v亚洲v| 在线欧美一区二区| 久久久91精品国产一区二区精品| 亚洲综合自拍偷拍| 丁香一区二区三区| 制服丝袜av成人在线看| **欧美大码日韩| 日本麻豆一区二区三区视频| 97久久超碰国产精品| 精品国产1区2区3区| 亚洲一区二区三区在线播放| 极品少妇一区二区三区精品视频| 欧美午夜电影在线播放| 中文字幕乱码日本亚洲一区二区| 日本va欧美va瓶| 欧美在线视频日韩| 日韩毛片在线免费观看| 黄色小说综合网站| 3atv一区二区三区| 亚洲乱码国产乱码精品精的特点| 国产一区在线看| 日韩亚洲欧美一区二区三区| 亚洲网友自拍偷拍| 91在线高清观看| 国产精品女同一区二区三区| 精品亚洲国内自在自线福利| 91精品久久久久久久久99蜜臂| 亚洲视频你懂的| 99视频一区二区| 国产精品免费视频一区| 国产一区二区精品久久91| 日韩一区二区三区精品视频| 污片在线观看一区二区| 精品视频一区三区九区| 亚洲精品视频一区| 丁香婷婷深情五月亚洲| 国产欧美日韩一区二区三区在线观看| 狠狠久久亚洲欧美| 精品国产一区二区三区av性色| 日韩成人伦理电影在线观看| 欧美日韩国产影片| 性感美女极品91精品| 欧美日韩综合在线| 天天综合天天做天天综合| 欧美视频中文一区二区三区在线观看| 一区二区三区中文字幕电影| 色综合天天综合| 一区二区三区在线观看视频| 欧美性生交片4| 亚洲国产成人av好男人在线观看| 精品视频1区2区| 日韩国产欧美一区二区三区| 日韩欧美一区二区视频| 免费视频最近日韩| 欧美成人艳星乳罩| 国产一区二区三区av电影| 国产视频911| 波多野结衣亚洲一区| 最近中文字幕一区二区三区| 91福利视频网站| 天天av天天翘天天综合网色鬼国产| 欧美日本一道本| 美女在线一区二区| 国产日韩影视精品| 成人国产亚洲欧美成人综合网| 亚洲免费色视频| 欧美日韩1234| 精品一区二区三区视频在线观看| 久久综合色天天久久综合图片| 国产精品888| 亚洲欧洲综合另类| 欧美精品777| 成人一区二区三区中文字幕| 亚洲精品菠萝久久久久久久| 欧美一区二区大片| 国产成人精品亚洲午夜麻豆| 亚洲影院理伦片| 精品少妇一区二区三区在线播放| 成熟亚洲日本毛茸茸凸凹| 亚洲一区二区欧美| 久久久久久久国产精品影院|