Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for foo (0.14 sec)

  1. src/main/java/org/codelibs/core/beans/BeanDesc.java

     * </pre>
     * <p>
     * 取得した{@link BeanDesc}から,対象となるJavaBeansのプロパティやフィールド、コンストラクタ、メソッドのメタデータを取得できます。
     * </p>
     *
     * <pre>
     * for (PropertyDesc propertyDesc : beanDesc.getPropertyDescs()) {
     *     propertyDesc.getValue(foo); // Foo のプロパティの値を取得
     * }
     *
     * for (FieldDesc fieldDesc : beanDesc.getFieldDescs()) {
     *     fieldDesc.getFileldValue(foo); // Foo のフィールドの値を取得
     * }
     *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
Back to top