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

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

?? localebeanutils.java

?? 這是一個有關common beanutils 的源碼
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
            throws IllegalAccessException, InvocationTargetException {

        LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().setProperty(bean, name, value);
    }

    /**
     * <p>Set the specified locale-sensitive property value, performing type
     * conversions as required to conform to the type of the destination
     * property using the specified conversion pattern.</p>
     *
     * <p>For more details see <code>LocaleBeanUtilsBean</code></p>
     *
     * @param bean Bean on which setting is to be performed
     * @param name Property name (can be nested/indexed/mapped/combo)
     * @param value Value to be set
     * @param pattern The conversion pattern
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     *
     * @see LocaleBeanUtilsBean#setProperty(Object, String, Object, String)
     */
    public static void setProperty(Object bean, String name, Object value, String pattern)
            throws IllegalAccessException, InvocationTargetException {

        LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().setProperty(bean, name, value, pattern);
     }

    /**
     * <p>Calculate the property type.</p>
     *
     * <p>For more details see <code>LocaleBeanUtilsBean</code></p>
     *
     * @param target The bean
     * @param name The property name
     * @param propName The Simple name of target property
     * @return The property's type
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     *
     * @see LocaleBeanUtilsBean#definePropertyType(Object, String, String)
     */
    protected static Class definePropertyType(Object target, String name, String propName)
            throws IllegalAccessException, InvocationTargetException {

        return LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().definePropertyType(target, name, propName);
    }

    /**
     * <p>Convert the specified value to the required type using the
     * specified conversion pattern.</p>
     *
     * <p>For more details see <code>LocaleBeanUtilsBean</code></p>
     *
     * @param type The Java type of target property
     * @param index The indexed subscript value (if any)
     * @param value The value to be converted
     * @param pattern The conversion pattern
     * @return The converted value
     * @see LocaleBeanUtilsBean#convert(Class, int, Object, String)
     */
    protected static Object convert(Class type, int index, Object value, String pattern) {

        return LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().convert(type, index, value, pattern);
    }

    /**
     * <p>Convert the specified value to the required type.</p>
     *
     * <p>For more details see <code>LocaleBeanUtilsBean</code></p>
     *
     * @param type The Java type of target property
     * @param index The indexed subscript value (if any)
     * @param value The value to be converted
     * @return The converted value
     * @see LocaleBeanUtilsBean#convert(Class, int, Object)
     */
    protected static Object convert(Class type, int index, Object value) {

        return LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().convert(type, index, value);
    }

    /**
     * <p>Invoke the setter method.</p>
     *
     * <p>For more details see <code>LocaleBeanUtilsBean</code></p>
     *
     * @param target The bean
     * @param propName The Simple name of target property
     * @param key The Mapped key value (if any)
     * @param index The indexed subscript value (if any)
     * @param newValue The value to be set
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     *
     * @see LocaleBeanUtilsBean#invokeSetter(Object, String, String, int, Object)
     */
    protected static void invokeSetter(Object target, String propName, String key, int index, Object newValue)
            throws IllegalAccessException, InvocationTargetException {

       LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().invokeSetter(target, propName, key, index, newValue);
    }

    /**
     * Resolve any nested expression to get the actual target bean.
     *
     * @deprecated moved into <code>LocaleBeanUtilsBean</code>
     * @param bean The bean
     * @param name The property name
     * @return The property's descriptor
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     */
    protected static Descriptor calculate(Object bean, String name)
            throws IllegalAccessException, InvocationTargetException {

        org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor descriptor
            = LocaleBeanUtilsBean.getLocaleBeanUtilsInstance().calculate(bean, name);
        return new Descriptor(
                descriptor.getTarget(),
                descriptor.getName(),
                descriptor.getPropName(),
                descriptor.getKey(),
                descriptor.getIndex());
    }

    /** @deprecated moved into <code>LocaleBeanUtils</code> */
    protected static class Descriptor {

        private int index = -1;    // Indexed subscript value (if any)
        private String name;
        private String propName;   // Simple name of target property
        private String key;        // Mapped key value (if any)
        private Object target;

        /**
         * Construct a descriptor instance for the target bean and property.
         *
         * @param target The target bean
         * @param name The property name (includes indexed/mapped expr)
         * @param propName The property name
         * @param key The mapped property key (if any)
         * @param index The indexed property index (if any)
         */
        public Descriptor(Object target, String name, String propName, String key, int index) {

            setTarget(target);
            setName(name);
            setPropName(propName);
            setKey(key);
            setIndex(index);
        }

        /**
         * Return the target bean.
         *
         * @return The descriptors target bean
         */
        public Object getTarget() {
            return target;
        }

        /**
         * Set the target bean.
         *
         * @param target The target bean
         */
        public void setTarget(Object target) {
            this.target = target;
        }

        /**
         * Return the mapped property key.
         *
         * @return the mapped property key (if any)
         */
        public String getKey() {
            return key;
        }

        /**
         * Set the mapped property key.
         *
         * @param key The mapped property key (if any)
         */
        public void setKey(String key) {
            this.key = key;
        }

        /**
         * Return indexed property index.
         *
         * @return indexed property index (if any)
         */
        public int getIndex() {
            return index;
        }

        /**
         * Set the indexed property index.
         *
         * @param index The indexed property index (if any)
         */
        public void setIndex(int index) {
            this.index = index;
        }

        /**
         * Return property name (includes indexed/mapped expr).
         *
         * @return The property name (includes indexed/mapped expr)
         */
        public String getName() {
            return name;
        }

        /**
         * Set the property name (includes indexed/mapped expr).
         *
         * @param name The property name (includes indexed/mapped expr)
         */
        public void setName(String name) {
            this.name = name;
        }

        /**
         * Return the property name.
         *
         * @return The property name
         */
        public String getPropName() {
            return propName;
        }

        /**
         * Set the property name.
         *
         * @param propName The property name
         */
        public void setPropName(String propName) {
            this.propName = propName;
        }
    }
}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久青草大香线综合精品| 国产99久久久国产精品| 欧洲av一区二区嗯嗯嗯啊| 亚洲欧美激情在线| 欧美日韩一区二区电影| 日韩国产成人精品| 亚洲精品一区二区三区99| 国产精品一二三四五| 亚洲欧洲一区二区三区| 欧美网站一区二区| 捆绑调教美女网站视频一区| 亚洲精品一区二区三区99| 成人av先锋影音| 一区二区三区波多野结衣在线观看| 欧美亚洲综合网| 精品一区二区在线视频| 国产欧美日韩在线看| 欧美综合天天夜夜久久| 日韩av二区在线播放| 国产欧美精品日韩区二区麻豆天美| 国产福利一区二区| 依依成人综合视频| 欧美tickling网站挠脚心| 99精品久久99久久久久| 美女视频免费一区| 1区2区3区国产精品| 日韩一区国产二区欧美三区| 国产91精品精华液一区二区三区| 亚洲综合一二三区| 久久久精品中文字幕麻豆发布| 99re在线精品| 国产一区二区在线观看视频| 日韩美女视频一区| 欧美tk—视频vk| 欧洲一区在线电影| 国产suv精品一区二区883| 亚洲国产一区二区三区青草影视| 久久久精品日韩欧美| 欧美日韩一区在线观看| 国产成人精品网址| 美洲天堂一区二卡三卡四卡视频| 亚洲视频电影在线| 国产三级三级三级精品8ⅰ区| 欧洲日韩一区二区三区| 成人性生交大合| 麻豆91精品视频| 亚洲午夜在线视频| 亚洲欧洲制服丝袜| 久久精品日韩一区二区三区| 欧美精选在线播放| 色综合天天综合给合国产| 国产伦理精品不卡| 视频一区二区三区入口| 亚洲免费观看高清| 国产精品视频在线看| 日韩视频免费观看高清在线视频| 在线观看亚洲成人| 成人性生交大片免费看在线播放 | 欧美久久一区二区| 91农村精品一区二区在线| 国产宾馆实践打屁股91| 国内精品久久久久影院一蜜桃| 日韩精彩视频在线观看| 亚洲一区二区三区视频在线播放 | 日韩欧美一区二区三区在线| 在线欧美小视频| 91麻豆免费观看| 不卡一区在线观看| 成人av在线一区二区三区| 国产成人av电影| 国产精品一区在线观看乱码 | 国产99精品在线观看| 国模冰冰炮一区二区| 久久国产精品露脸对白| 麻豆精品在线视频| 国产综合一区二区| 狠狠色丁香九九婷婷综合五月| 久久福利资源站| 久久精品国产免费看久久精品| 日韩高清在线观看| 美女在线一区二区| 精品一区二区三区香蕉蜜桃 | 亚洲一区二区三区中文字幕在线 | 国产精品成人一区二区艾草| 国产日韩欧美综合一区| 国产日韩欧美激情| 最近中文字幕一区二区三区| 亚洲欧洲国产日本综合| 一区二区三区在线影院| 一区二区三区丝袜| 午夜国产精品影院在线观看| 青草国产精品久久久久久| 久久99国产精品尤物| 国产精品亚洲午夜一区二区三区 | 日韩欧美在线网站| 久久影院视频免费| 国产精品久久久久9999吃药| 亚洲女与黑人做爰| 午夜精品aaa| 久久精品国产亚洲一区二区三区| 国产麻豆精品视频| 色哟哟欧美精品| 91精品国产aⅴ一区二区| 欧美成人一区二区三区片免费| 国产欧美日韩视频一区二区| 亚洲女女做受ⅹxx高潮| 日韩中文字幕区一区有砖一区| 国内精品免费**视频| 99精品视频一区二区| 欧美一区二区三区在线观看| 国产午夜精品一区二区三区四区| 亚洲欧美日韩国产成人精品影院| 亚洲成人动漫在线免费观看| 国产在线播放一区| 日本久久精品电影| 久久综合久久综合久久| 伊人开心综合网| 久久99久久久欧美国产| 日本黄色一区二区| 欧美精品一区二区三区视频| 亚洲欧美偷拍三级| 国产一区二区三区香蕉| 欧美午夜在线一二页| 久久亚洲精品小早川怜子| 一区二区三区免费网站| 国产美女一区二区| 欧美老人xxxx18| 中文字幕一区二区三区色视频| 亚洲国产va精品久久久不卡综合| 国产精品66部| 制服.丝袜.亚洲.中文.综合 | 一区二区三区四区激情 | 蜜臀av性久久久久蜜臀aⅴ流畅| 成人动漫中文字幕| 欧美一区二区三区色| 亚洲黄色片在线观看| 豆国产96在线|亚洲| 日韩欧美在线1卡| 亚洲香肠在线观看| 91丨porny丨首页| 国产亚洲午夜高清国产拍精品| 亚洲成人你懂的| 91官网在线免费观看| 国产精品每日更新| 国产麻豆日韩欧美久久| 日韩免费性生活视频播放| 亚洲一区在线观看免费| zzijzzij亚洲日本少妇熟睡| 久久综合av免费| 狠狠色狠狠色合久久伊人| 日韩一区二区影院| 五月综合激情婷婷六月色窝| 欧美自拍偷拍午夜视频| 亚洲啪啪综合av一区二区三区| 国产99一区视频免费| 久久久久国产精品人| 国产在线播放一区| 久久综合九色综合久久久精品综合| 视频在线观看一区| 欧美人成免费网站| 三级在线观看一区二区| 欧美精品乱码久久久久久| 亚洲第一成年网| 日本韩国精品在线| 一区二区三区国产精华| 一本久道中文字幕精品亚洲嫩| 国产精品狼人久久影院观看方式| 国产成人在线视频免费播放| 久久久久久一二三区| 国产不卡免费视频| 国产精品人妖ts系列视频| 成人免费视频播放| 中文字幕亚洲一区二区av在线| 成a人片国产精品| 亚洲精品成人少妇| 一本色道**综合亚洲精品蜜桃冫| 亚洲精品国产品国语在线app| 欧美午夜一区二区| 日韩不卡手机在线v区| 欧美一区二区三区小说| 精品一区二区久久久| 国产午夜精品久久久久久久| caoporm超碰国产精品| 亚洲猫色日本管| 欧美人与性动xxxx| 狠狠色狠狠色合久久伊人| 亚洲国产精华液网站w | 高清日韩电视剧大全免费| 亚洲天堂久久久久久久| 91成人在线精品| 青椒成人免费视频| 国产丝袜在线精品| 日韩美女主播在线视频一区二区三区 | 一区二区三区电影在线播| 欧美日韩精品久久久| 国产在线视频精品一区| 亚洲欧洲av色图| 欧美日韩成人激情| 国产一区二区三区免费播放| 亚洲天堂av老司机|