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

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

?? jobdatamap.java

?? Quartz 是個開源的作業調度框架
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*  * Copyright 2004-2005 OpenSymphony  *  * Licensed under the Apache License, Version 2.0 (the "License"); you may not  * use this file except in compliance with the License. You may obtain a copy  * of the License at  *  *   http://www.apache.org/licenses/LICENSE-2.0  *    * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the  * License for the specific language governing permissions and limitations  * under the License. *  *//* * Previously Copyright (c) 2001-2004 James House */package org.quartz;import java.io.Serializable;import java.util.Iterator;import java.util.Map;import org.quartz.utils.DirtyFlagMap;/** * <p> * Holds state information for <code>Job</code> instances. * </p> *  * <p> * <code>JobDataMap</code> instances are stored once when the <code>Job</code> * is added to a scheduler. They are also re-persisted after every execution of * <code>StatefulJob</code> instances. * </p> *  * <p> * <code>JobDataMap</code> instances can also be stored with a  * <code>Trigger</code>.  This can be useful in the case where you have a Job * that is stored in the scheduler for regular/repeated use by multiple  * Triggers, yet with each independent triggering, you want to supply the * Job with different data inputs.   * </p> *  * <p> * The <code>JobExecutionContext</code> passed to a Job at execution time  * also contains a convenience <code>JobDataMap</code> that is the result * of merging the contents of the trigger's JobDataMap (if any) over the * Job's JobDataMap (if any).   * </p> *  * @see Job * @see StatefulJob * @see Trigger * @see JobExecutionContext *  * @author James House */public class JobDataMap extends DirtyFlagMap implements Serializable {    private static final long serialVersionUID = -6939901990106713909L;        /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Data members.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    private boolean allowsTransientData = false;    /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Constructors.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    /**     * <p>     * Create an empty <code>JobDataMap</code>.     * </p>     */    public JobDataMap() {        super(15);    }    /**     * <p>     * Create a <code>JobDataMap</code> with the given data.     * </p>     */    public JobDataMap(Map map) {        this();        putAll(map);    }    /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Interface.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    /**     * <p>     * Tell the <code>JobDataMap</code> that it should allow non- <code>Serializable</code>     * data.     * </p>     *      * <p>     * If the <code>JobDataMap</code> does contain non- <code>Serializable</code>     * objects, and it belongs to a non-volatile <code>Job</code> that is     * stored in a <code>JobStore</code> that supports persistence, then     * those elements will be nulled-out during persistence.     * </p>     */    public void setAllowsTransientData(boolean allowsTransientData) {        if (containsTransientData() && !allowsTransientData)                throw new IllegalStateException(                        "Cannot set property 'allowsTransientData' to 'false' "                                + "when data map contains non-serializable objects.");        this.allowsTransientData = allowsTransientData;    }    public boolean getAllowsTransientData() {        return allowsTransientData;    }    public boolean containsTransientData() {        if (!getAllowsTransientData()) // short circuit...                return false;        String[] keys = getKeys();        for (int i = 0; i < keys.length; i++) {            Object o = super.get(keys[i]);            if (!(o instanceof Serializable)) return true;        }        return false;    }    /**     * <p>     * Nulls-out any data values that are non-Serializable.     * </p>     */    public void removeTransientData() {        if (!getAllowsTransientData()) // short circuit...                return;        String[] keys = getKeys();        for (int i = 0; i < keys.length; i++) {            Object o = super.get(keys[i]);            if (!(o instanceof Serializable)) remove(keys[i]);        }    }    /**     * <p>     * Adds the name-value pairs in the given <code>Map</code> to the <code>JobDataMap</code>.     * </p>     *      * <p>     * All keys must be <code>String</code>s, and all values must be <code>Serializable</code>.     * </p>     */    public void putAll(Map map) {        Iterator itr = map.keySet().iterator();        while (itr.hasNext()) {            Object key = itr.next();            Object val = map.get(key);            put(key, val);            // will throw IllegalArgumentException if value not serilizable        }    }    /**     * <p>     * Adds the given <code>int</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, int value) {        super.put(key, new Integer(value));    }    /**     * <p>     * Adds the given <code>long</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, long value) {        super.put(key, new Long(value));    }    /**     * <p>     * Adds the given <code>float</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, float value) {        super.put(key, new Float(value));    }    /**     * <p>     * Adds the given <code>double</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, double value) {        super.put(key, new Double(value));    }    /**     * <p>     * Adds the given <code>boolean</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, boolean value) {        super.put(key, new Boolean(value));    }    /**     * <p>     * Adds the given <code>char</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, char value) {        super.put(key, new Character(value));    }    /**     * <p>     * Adds the given <code>String</code> value to the <code>Job</code>'s     * data map.     * </p>     */    public void put(String key, String value) {        super.put(key, value);    }    /**     * <p>     * Adds the given <code>boolean</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, boolean value) {        String strValue = new Boolean(value).toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Boolean</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, Boolean value) {        String strValue = value.toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>char</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, char value) {        String strValue = new Character(value).toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Character</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, Character value) {        String strValue = value.toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>double</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, double value) {        String strValue = new Double(value).toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Double</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, Double value) {        String strValue = value.toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>float</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, float value) {        String strValue = new Float(value).toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Float</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, Float value) {        String strValue = value.toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>int</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, int value) {        String strValue = new Integer(value).toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Integer</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, Integer value) {        String strValue = value.toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>long</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, long value) {        String strValue = new Long(value).toString();        super.put(key, strValue);    }    /**     * <p>     * Adds the given <code>Long</code> value as a string version to the     * <code>Job</code>'s data map.     * </p>     */    public void putAsString(String key, Long value) {        String strValue = value.toString();

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91伊人久久大香线蕉| 亚洲风情在线资源站| 欧美国产乱子伦| 国产精品夜夜嗨| 欧美大片在线观看一区二区| 亚洲va欧美va人人爽| 欧美日韩精品一区二区三区四区| 亚洲欧洲性图库| 91亚洲精品一区二区乱码| 精品sm捆绑视频| 国产一区二区三区免费观看| 亚洲国产精品v| 91美女蜜桃在线| 一区二区成人在线视频| 91精品国产色综合久久不卡电影 | 日本午夜一本久久久综合| 在线观看一区日韩| 一区二区在线观看视频| 欧美午夜一区二区三区免费大片| 一二三四社区欧美黄| 欧美巨大另类极品videosbest | 国产情人综合久久777777| av电影一区二区| 五月综合激情婷婷六月色窝| 精品国产人成亚洲区| jlzzjlzz欧美大全| 五月婷婷另类国产| 久久久久久电影| 色婷婷综合久久久中文一区二区| 亚洲成人精品在线观看| 久久综合色婷婷| 99精品久久免费看蜜臀剧情介绍| 一二三区精品福利视频| 精品免费99久久| 成人免费看视频| 免费观看日韩电影| 一区二区三区四区激情 | 风间由美一区二区三区在线观看 | 色网综合在线观看| 亚洲成人自拍网| 久久久精品综合| 欧美性做爰猛烈叫床潮| 国产盗摄一区二区| 丝袜亚洲精品中文字幕一区| 精品国产免费久久| 欧美日韩一本到| 成av人片一区二区| 久久国产精品区| 午夜精品久久久久影视| 中文字幕一区二区三中文字幕| 欧美一区二区三区播放老司机| 91丨九色丨蝌蚪富婆spa| 黑人精品欧美一区二区蜜桃| 亚洲成av人片观看| 亚洲欧美一区二区三区极速播放 | 国产欧美精品区一区二区三区 | 欧美精品一二三区| av成人老司机| 国产黄色精品视频| 九九精品视频在线看| 日韩精品一二三| 亚洲综合免费观看高清完整版在线| 国产亚洲一区二区三区在线观看| 日韩欧美中文字幕制服| 欧美一区二区三级| 在线亚洲高清视频| 91精品91久久久中77777| 成人av电影免费观看| 国产精品99久| 国产成人午夜精品5599| 久久精品国产色蜜蜜麻豆| 日本免费新一区视频| 亚洲成av人影院| 一区二区国产视频| 中文字幕中文字幕中文字幕亚洲无线| 亚洲精品在线免费观看视频| 日韩欧美在线1卡| 日韩美女视频一区二区在线观看| 欧美日韩精品一区二区| 欧美日韩一区二区欧美激情| 欧美丰满一区二区免费视频| 欧美午夜在线一二页| 91国产福利在线| 欧美性生活影院| 在线播放91灌醉迷j高跟美女| 91在线高清观看| 成人三级伦理片| av在线播放成人| 91在线码无精品| 在线亚洲一区二区| 欧美羞羞免费网站| 欧美日韩成人一区二区| 制服视频三区第一页精品| 欧美老肥妇做.爰bbww| 91精品国产91久久综合桃花| 日韩精品中文字幕在线不卡尤物| 7878成人国产在线观看| 91精品国产aⅴ一区二区| 久久夜色精品一区| 久久精品这里都是精品| 中文字幕一区视频| 亚洲成av人影院| 国内精品视频一区二区三区八戒 | av欧美精品.com| 色就色 综合激情| 91麻豆精品国产91久久久使用方法 | 国产农村妇女毛片精品久久麻豆| 国产精品你懂的在线欣赏| 亚洲免费av网站| 亚洲国产另类精品专区| 麻豆国产精品一区二区三区 | 亚洲精品免费播放| 亚洲一级片在线观看| 一区二区三区在线视频播放| 五月天视频一区| 狠狠v欧美v日韩v亚洲ⅴ| 国产电影精品久久禁18| 成人app在线| 欧美日韩一二三区| 日韩一区二区影院| 国产欧美视频在线观看| 亚洲综合色噜噜狠狠| 日本免费新一区视频| 99vv1com这只有精品| 7799精品视频| 久久视频一区二区| 亚洲午夜影视影院在线观看| 美女任你摸久久| 91老司机福利 在线| 久久在线观看免费| 亚洲国产一区在线观看| 韩国一区二区视频| 欧美日韩国产乱码电影| 国产精品成人免费在线| 日本美女一区二区| 91丨porny丨在线| 久久久久久亚洲综合| 免费日韩伦理电影| 99在线精品视频| 久久久另类综合| 亚洲一区二区在线观看视频 | 国产高清久久久久| 色哟哟亚洲精品| 国产日产欧美一区| 日本成人在线电影网| 色婷婷综合视频在线观看| 国产精品毛片高清在线完整版| 日本一不卡视频| 欧美情侣在线播放| 一区二区三区免费在线观看| 国产白丝精品91爽爽久久| 久久中文娱乐网| 精品一区二区在线视频| 欧美日韩aaa| 天天亚洲美女在线视频| 欧美影视一区在线| 一区二区三国产精华液| 91碰在线视频| 国产精品不卡一区| 91一区二区三区在线观看| 国产欧美综合色| 成人夜色视频网站在线观看| 久久九九久精品国产免费直播| 久久国产夜色精品鲁鲁99| 日韩欧美国产小视频| 免费欧美高清视频| 日韩一区二区视频| 激情综合色播激情啊| 欧美一级专区免费大片| 蜜臀国产一区二区三区在线播放| 91精品国产综合久久婷婷香蕉 | 亚洲蜜桃精久久久久久久| 成人18视频日本| 中文字幕在线观看一区| 成人免费观看av| 国产精品福利一区二区三区| 99久久婷婷国产综合精品| 成人免费在线播放视频| 色偷偷88欧美精品久久久| 亚洲精品免费视频| 欧美最猛黑人xxxxx猛交| 亚洲国产精品久久人人爱蜜臀 | 欧美日韩电影一区| 午夜激情综合网| 精品久久久三级丝袜| 白白色亚洲国产精品| 亚洲精品成人在线| 欧美日本不卡视频| 美美哒免费高清在线观看视频一区二区| 欧美一级二级三级乱码| 精品一区二区三区免费视频| 精品99999| 91免费版在线| 日韩高清不卡在线| 久久久99精品免费观看| 色综合av在线| 免播放器亚洲一区| 国产欧美精品一区二区色综合朱莉| 91小视频免费观看| 蜜桃久久av一区|