亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
日韩毛片一二三区| 99久久夜色精品国产网站| 日本高清成人免费播放| 欧美福利电影网| 亚洲最快最全在线视频| 色综合久久久久综合体桃花网| 久久综合九色综合97婷婷| 免费久久精品视频| 欧美一区二区黄| 日韩激情av在线| 欧美日韩国产影片| 亚洲高清不卡在线观看| 欧美日韩午夜精品| 午夜精品久久久久久久久久| 成a人片国产精品| 久久精品亚洲一区二区三区浴池| 国产综合色在线视频区| 久久亚洲一区二区三区四区| 久久国产精品色婷婷| 精品国内片67194| 国产在线精品国自产拍免费| 欧美一区欧美二区| 麻豆国产精品777777在线| 日韩欧美一区中文| 国产米奇在线777精品观看| 久久美女艺术照精彩视频福利播放| 国内久久精品视频| 欧美精品一区二区三区蜜桃视频 | 欧美激情一区二区| 国产 日韩 欧美大片| 国产精品天干天干在观线| 成人网页在线观看| 日韩伦理免费电影| 欧美丝袜丝交足nylons| 人人超碰91尤物精品国产| 日韩一区二区三区观看| 国产一区二区三区香蕉| 亚洲欧美在线aaa| 欧美日韩免费观看一区二区三区 | 不卡的av中国片| 亚洲卡通动漫在线| 欧美一级专区免费大片| 国产成人一区在线| 亚洲乱码日产精品bd| 91精品国产免费久久综合| 蜜臀国产一区二区三区在线播放 | 欧美性生活久久| 老司机精品视频一区二区三区| 国产网站一区二区| 91福利社在线观看| 九九精品视频在线看| 亚洲女厕所小便bbb| 欧美精三区欧美精三区| 风间由美一区二区三区在线观看| 亚洲免费看黄网站| 欧美电视剧在线观看完整版| 97精品国产露脸对白| 久久福利视频一区二区| 久久精品一区四区| 欧美日韩一区二区三区四区五区| 国产在线国偷精品免费看| 亚洲一区av在线| 国产区在线观看成人精品 | 欧美日韩国产精品自在自线| 国产成人av电影在线| 亚洲高清不卡在线观看| 中文字幕精品三区| 精品国产伦一区二区三区免费 | 国产精品久久久一本精品 | 五月激情综合婷婷| 国产精品国产三级国产普通话99| 欧美一区二区三区系列电影| 色偷偷88欧美精品久久久| 国产一区二区三区免费看| 国产精品乱码一区二三区小蝌蚪| 日韩欧美一区在线观看| 欧美日韩大陆在线| 日本福利一区二区| 成人app在线| 日韩精品免费视频人成| 亚洲综合在线免费观看| 日本一区二区三区四区在线视频| 日韩精品一区二区三区中文精品| 91在线精品一区二区| 国产91在线看| 国产乱码字幕精品高清av| 蜜桃精品视频在线观看| 亚洲福利一二三区| 国产精品私人自拍| 国产日韩精品一区二区三区 | 欧美日韩精品专区| 成人少妇影院yyyy| 国产成人综合在线播放| 精品在线播放午夜| 久久成人羞羞网站| 蜜桃视频在线观看一区二区| 日本午夜一本久久久综合| 亚洲国产精品嫩草影院| 亚洲综合区在线| 秋霞电影网一区二区| 久久精品国产一区二区| 国产在线播精品第三| www.亚洲在线| 在线一区二区视频| 91精品国模一区二区三区| 精品剧情在线观看| 国产精品每日更新在线播放网址| 亚洲人成网站色在线观看| 日韩精品午夜视频| 国产99久久久国产精品| 一本色道a无线码一区v| 欧美一级二级三级蜜桃| 国产人妖乱国产精品人妖| 亚洲激情综合网| 美国十次综合导航| aaa欧美色吧激情视频| 欧美剧情片在线观看| 久久久久国产免费免费| 一区二区三区中文在线观看| 美国十次综合导航| 91麻豆高清视频| 日韩欧美国产综合| 中文字幕一区二区三区av| 日韩在线卡一卡二| av电影在线观看一区| 51精品久久久久久久蜜臀| 国产农村妇女毛片精品久久麻豆| 亚洲午夜私人影院| 国产精品自在欧美一区| 欧美视频一区二区三区在线观看| 26uuu精品一区二区三区四区在线| 亚洲欧洲国产日本综合| 美女久久久精品| 色94色欧美sute亚洲线路一ni | 国产xxx精品视频大全| 欧洲一区在线电影| 国产日产欧美一区二区视频| 五月天婷婷综合| 99在线视频精品| 欧美成人精品高清在线播放| 一区二区三区在线视频观看| 高清不卡一区二区在线| 欧美大白屁股肥臀xxxxxx| 亚洲综合色婷婷| 99视频在线观看一区三区| 久久综合中文字幕| 日韩国产欧美在线观看| 欧美视频一区二| 三级影片在线观看欧美日韩一区二区| 麻豆国产一区二区| 91福利在线导航| 国产亚洲精品精华液| 美女在线一区二区| 欧美男人的天堂一二区| 一区二区欧美视频| av亚洲精华国产精华| 欧美激情综合五月色丁香小说| 美女视频免费一区| 91精品国产乱| 亚洲成人三级小说| 91蜜桃视频在线| 亚洲日穴在线视频| 成人伦理片在线| 久久精品亚洲国产奇米99| 美女一区二区视频| 日韩一区二区免费视频| 五月天一区二区三区| 欧美高清一级片在线| 午夜不卡在线视频| 欧美日韩色一区| 日韩精品亚洲专区| 欧美一区二区三区喷汁尤物| 亚洲超丰满肉感bbw| 欧美日韩亚洲综合| 日韩精品视频网| 91精品国产欧美日韩| 久久成人免费网站| 日韩av一区二| 国产精品一级片在线观看| 99久久婷婷国产综合精品电影| 欧美一区二区三区视频在线观看| 亚洲天堂免费在线观看视频| 91丝袜呻吟高潮美腿白嫩在线观看| 成人欧美一区二区三区1314| 99riav久久精品riav| 亚洲麻豆国产自偷在线| 欧美视频一区二区三区四区| 日韩经典一区二区| 91精品麻豆日日躁夜夜躁| 韩国视频一区二区| 国产精品私房写真福利视频| 色综合色狠狠天天综合色| 一区二区三区久久久| 91精品国产色综合久久ai换脸| 久久丁香综合五月国产三级网站| 国产欧美日韩精品一区| 99久久婷婷国产| 性久久久久久久久| 精品国产凹凸成av人导航| 国产成人免费视频精品含羞草妖精|