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

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

?? propertyutils.java

?? 這是一個有關common beanutils 的源碼
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
     * @exception IllegalArgumentException if the property name
     *  is nested or indexed
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#getSimpleProperty
     */
    public static Object getSimpleProperty(Object bean, String name)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        return PropertyUtilsBean.getInstance().getSimpleProperty(bean, name);
        
    }


    /**
     * <p>Return an accessible property setter method for this property,
     * if there is one; otherwise return <code>null</code>.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param descriptor Property descriptor to return a setter for
     * @return The write method
     * @see PropertyUtilsBean#getWriteMethod(PropertyDescriptor)
     */
    public static Method getWriteMethod(PropertyDescriptor descriptor) {

        return PropertyUtilsBean.getInstance().getWriteMethod(descriptor);

    }


    /**
     * <p>Return <code>true</code> if the specified property name identifies
     * a readable property on the specified bean; otherwise, return
     * <code>false</code>.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean to be examined (may be a {@link DynaBean}
     * @param name Property name to be evaluated
     * @return <code>true</code> if the property is readable,
     * otherwise <code>false</code>
     *
     * @exception IllegalArgumentException if <code>bean</code>
     *  or <code>name</code> is <code>null</code>
     * @see PropertyUtilsBean#isReadable
     * @since BeanUtils 1.6
     */
    public static boolean isReadable(Object bean, String name) {

        return PropertyUtilsBean.getInstance().isReadable(bean, name);
    }


    /**
     * <p>Return <code>true</code> if the specified property name identifies
     * a writeable property on the specified bean; otherwise, return
     * <code>false</code>.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean to be examined (may be a {@link DynaBean}
     * @param name Property name to be evaluated
     * @return <code>true</code> if the property is writeable,
     * otherwise <code>false</code>
     *
     * @exception IllegalArgumentException if <code>bean</code>
     *  or <code>name</code> is <code>null</code>
     * @see PropertyUtilsBean#isWriteable
     * @since BeanUtils 1.6
     */
    public static boolean isWriteable(Object bean, String name) {

        return PropertyUtilsBean.getInstance().isWriteable(bean, name);
    }


    /**
     * <p>Sets the value of the specified indexed property of the specified
     * bean, with no type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be modified
     * @param name <code>propertyname[index]</code> of the property value
     *  to be modified
     * @param value Value to which the specified property element
     *  should be set
     *
     * @exception IndexOutOfBoundsException if the specified index
     *  is outside the valid range for the underlying property
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception IllegalArgumentException if <code>bean</code> or
     *  <code>name</code> is null
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setIndexedProperty(Object, String, Object)
     */
    public static void setIndexedProperty(Object bean, String name,
                                          Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setIndexedProperty(bean, name, value);

    }


    /**
     * <p>Sets the value of the specified indexed property of the specified
     * bean, with no type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be set
     * @param name Simple property name of the property value to be set
     * @param index Index of the property value to be set
     * @param value Value to which the indexed property element is to be set
     *
     * @exception IndexOutOfBoundsException if the specified index
     *  is outside the valid range for the underlying property
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception IllegalArgumentException if <code>bean</code> or
     *  <code>name</code> is null
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setIndexedProperty(Object, String, Object)
     */
    public static void setIndexedProperty(Object bean, String name,
                                          int index, Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setIndexedProperty(bean, name, index, value);
    }


    /**
     * <p>Sets the value of the specified mapped property of the
     * specified bean, with no type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be set
     * @param name <code>propertyname(key)</code> of the property value
     *  to be set
     * @param value The property 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
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setMappedProperty(Object, String, Object)
     */
    public static void setMappedProperty(Object bean, String name,
                                         Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setMappedProperty(bean, name, value);
    }


    /**
     * <p>Sets the value of the specified mapped property of the specified
     * bean, with no type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be set
     * @param name Mapped property name of the property value to be set
     * @param key Key of the property value to be set
     * @param value The property 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
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setMappedProperty(Object, String, String, Object)
     */
    public static void setMappedProperty(Object bean, String name,
                                         String key, Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setMappedProperty(bean, name, key, value);
    }


    /**
     * <p>Sets the value of the (possibly nested) property of the specified
     * name, for the specified bean, with no type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be modified
     * @param name Possibly nested name of the property to be modified
     * @param value Value to which the property is to be set
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception IllegalArgumentException if <code>bean</code> or
     *  <code>name</code> is null
     * @exception IllegalArgumentException if a nested reference to a
     *  property returns null
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setNestedProperty
     */
    public static void setNestedProperty(Object bean,
                                         String name, Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setNestedProperty(bean, name, value);
    }


    /**
     * <p>Set the value of the specified property of the specified bean,
     * no matter which property reference format is used, with no
     * type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be modified
     * @param name Possibly indexed and/or nested name of the property
     *  to be modified
     * @param value Value to which this property is to be set
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception IllegalArgumentException if <code>bean</code> or
     *  <code>name</code> is null
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setProperty
     */
    public static void setProperty(Object bean, String name, Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setProperty(bean, name, value);

    }


    /**
     * <p>Set the value of the specified simple property of the specified bean,
     * with no type conversions.</p>
     *
     * <p>For more details see <code>PropertyUtilsBean</code>.</p>
     *
     * @param bean Bean whose property is to be modified
     * @param name Name of the property to be modified
     * @param value Value to which the property should be set
     *
     * @exception IllegalAccessException if the caller does not have
     *  access to the property accessor method
     * @exception IllegalArgumentException if <code>bean</code> or
     *  <code>name</code> is null
     * @exception IllegalArgumentException if the property name is
     *  nested or indexed
     * @exception InvocationTargetException if the property accessor method
     *  throws an exception
     * @exception NoSuchMethodException if an accessor method for this
     *  propety cannot be found
     * @see PropertyUtilsBean#setSimpleProperty
     */
    public static void setSimpleProperty(Object bean,
                                         String name, Object value)
            throws IllegalAccessException, InvocationTargetException,
            NoSuchMethodException {

        PropertyUtilsBean.getInstance().setSimpleProperty(bean, name, value);
    }


}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩 欧美一区二区三区| 蜜桃一区二区三区在线观看| 亚洲一区电影777| 天天综合网天天综合色| 美国毛片一区二区三区| 成人午夜精品一区二区三区| 在线观看网站黄不卡| 亚洲欧美日韩电影| 成人午夜电影小说| 日本一区二区三区视频视频| 成人免费高清视频在线观看| 国产精品久久久久久久第一福利| 91在线丨porny丨国产| 亚洲天堂成人网| 欧美人与性动xxxx| 理论片日本一区| 国产精品亲子伦对白| 在线亚洲高清视频| 美女国产一区二区| 久久久国产综合精品女国产盗摄| 91一区在线观看| 天天操天天色综合| 亚洲精品一区二区三区蜜桃下载| 成人精品在线视频观看| 亚洲一区二区三区四区中文字幕| 日韩一区二区三区视频在线| 国产91精品久久久久久久网曝门| 亚洲免费资源在线播放| 欧美疯狂做受xxxx富婆| 国产一本一道久久香蕉| 亚洲男同性视频| 精品国产三级a在线观看| av一区二区三区| 三级亚洲高清视频| 中文字幕精品三区| 91精品在线免费观看| 国产成人在线观看免费网站| 亚洲国产精品麻豆| 国产亚洲美州欧州综合国| 在线免费一区三区| 国产一区二区三区日韩| 亚洲一区二区视频| 国产午夜亚洲精品理论片色戒 | 日韩欧美中文一区| 成人av在线一区二区三区| 午夜精品爽啪视频| 最近中文字幕一区二区三区| 欧美成人激情免费网| 欧美亚洲国产bt| 成人av免费在线| 国产原创一区二区三区| 午夜视频在线观看一区二区三区 | 成人动漫视频在线| 美女在线一区二区| 亚洲第一二三四区| 亚洲男人天堂av| 国产精品伦一区| 久久久亚洲精品石原莉奈| 欧美丰满高潮xxxx喷水动漫| 色综合久久久久久久久久久| 成人午夜精品一区二区三区| 国产一区二区三区久久久| 蜜臂av日日欢夜夜爽一区| 亚洲图片欧美色图| 亚洲毛片av在线| 亚洲日本在线a| 国产无遮挡一区二区三区毛片日本| 日韩一级视频免费观看在线| 欧美日韩国产高清一区| 日本丶国产丶欧美色综合| 成人黄色综合网站| 国产v综合v亚洲欧| 国产二区国产一区在线观看| 国产在线播精品第三| 激情综合五月天| 久久精品久久久精品美女| 石原莉奈一区二区三区在线观看| 性感美女久久精品| 亚洲一区视频在线观看视频| 亚洲黄色录像片| 亚洲一区二区三区视频在线播放 | 国产欧美日韩麻豆91| 精品国产乱子伦一区| 日韩欧美色电影| 日韩午夜激情视频| 日韩三级电影网址| 亚洲精品一线二线三线| 欧美xxxxxxxxx| 26uuu欧美| 欧美激情一二三区| 国产精品久久二区二区| 亚洲天堂av老司机| 一区二区在线观看视频在线观看| 亚洲一区二区av在线| 五月天视频一区| 激情成人午夜视频| 国内成人免费视频| 成人午夜电影久久影院| 91色视频在线| 欧美美女网站色| 欧美mv日韩mv国产网站app| 精品国产麻豆免费人成网站| 国产精品区一区二区三区| 亚洲天堂av一区| 日韩高清在线电影| 国产美女精品人人做人人爽| 成人a区在线观看| 欧美日韩在线不卡| 日韩视频在线你懂得| 中文字幕精品一区二区三区精品| 亚洲黄色小视频| 久久er精品视频| 色综合久久久久综合体桃花网| 9191久久久久久久久久久| 精品播放一区二区| 亚洲女女做受ⅹxx高潮| 麻豆免费看一区二区三区| 国产成人高清视频| 欧美亚洲国产一区二区三区| www精品美女久久久tv| 亚洲天堂精品视频| 日本va欧美va精品| av电影天堂一区二区在线| 91精品欧美综合在线观看最新 | 日韩美女视频19| 奇米777欧美一区二区| 成人免费视频视频在线观看免费| 欧美日韩精品欧美日韩精品一综合| 26uuu国产日韩综合| 亚洲国产aⅴ成人精品无吗| 国内成人精品2018免费看| 在线免费观看日本欧美| 久久久激情视频| 日韩福利电影在线| 99精品在线观看视频| 日韩视频免费观看高清完整版 | 欧美一区二区性放荡片| 国产精品乱码一区二三区小蝌蚪| 性欧美疯狂xxxxbbbb| 99久久久精品| 精品国产百合女同互慰| 一区二区三区四区高清精品免费观看| 国产在线看一区| 欧美精品久久天天躁| 亚洲日本电影在线| 国产米奇在线777精品观看| 在线电影院国产精品| 18成人在线视频| 成人性生交大片免费看视频在线| 在线不卡中文字幕播放| 综合激情网...| 国产成人av电影免费在线观看| 日韩女优电影在线观看| 亚洲国产乱码最新视频| 97精品久久久久中文字幕| 国产欧美日韩在线视频| 久久av资源站| 精品久久一区二区三区| 日韩国产欧美在线播放| 欧美日韩精品欧美日韩精品| 一区二区三区在线免费| 99精品热视频| 中文字幕一区二区在线播放| 国产精品99久久久久久似苏梦涵| 26uuu久久综合| 狠狠色丁香婷婷综合久久片| 日韩一二三区不卡| 免费观看久久久4p| 欧美一区二区三区色| 日本vs亚洲vs韩国一区三区二区| 欧美精品亚洲二区| 日韩精品三区四区| 91精品久久久久久久91蜜桃| 日本大胆欧美人术艺术动态| 欧美日韩国产123区| 日韩国产欧美三级| 88在线观看91蜜桃国自产| 日韩制服丝袜av| 日韩一区二区三区电影 | 久久网这里都是精品| 国内成+人亚洲+欧美+综合在线 | 国产成人精品免费一区二区| 国产精品免费久久| av一区二区三区| 亚洲一区影音先锋| 欧美日本在线视频| 免费观看一级特黄欧美大片| 2020日本不卡一区二区视频| 国产老妇另类xxxxx| 中文字幕欧美国产| 色屁屁一区二区| 视频一区视频二区在线观看| 26uuu色噜噜精品一区二区| 成人在线视频一区| 亚洲欧美日韩精品久久久久| 欧美亚洲日本国产| 麻豆精品在线看| 国产欧美日产一区| av不卡免费电影| 三级亚洲高清视频|