Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isInstanceField (0.09 sec)

  1. src/test/java/org/codelibs/core/lang/ModifierUtilTest.java

         */
        public void testIsInstanceField() throws Exception {
            Field f = Hoge.class.getDeclaredField("aaa");
            assertTrue(ModifierUtil.isInstanceField(f));
            f = Hoge.class.getDeclaredField("s");
            assertFalse(ModifierUtil.isInstanceField(f));
        }
    
        /**
         * @throws Exception
         */
        public void testIsTransient() throws Exception {
            Field f = Hoge.class.getDeclaredField("bbb");
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/ModifierUtil.java

        /**
         * インスタンスフィールドかどうかを返します。
         *
         * @param field
         *            フィールド。{@literal null}であってはいけません
         * @return インスタンスフィールドなら{@literal true}
         */
        public static boolean isInstanceField(final Field field) {
            assertArgumentNotNull("field", field);
    
            final int m = field.getModifiers();
            return !isStatic(m) && !isFinal(m);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                }
                setFieldAccessible(field);
                final FieldDescImpl fieldDesc = new FieldDescImpl(this, field);
                fieldDescCache.put(fname, fieldDesc);
                if (!FieldUtil.isInstanceField(field)) {
                    continue;
                }
                if (hasPropertyDesc(fname)) {
                    final PropertyDescImpl pd = (PropertyDescImpl) propertyDescCache.get(field.getName());
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/FieldUtil.java

        /**
         * インスタンスフィールドかどうか返します。
         *
         * @param field
         *            フィールド。{@literal null}であってはいけません
         * @return インスタンスフィールドなら{@literal true}
         */
        public static boolean isInstanceField(final Field field) {
            assertArgumentNotNull("field", field);
    
            return !Modifier.isStatic(field.getModifiers());
        }
    
        /**
         * パブリックフィールドかどうか返します。
         *
         * @param field
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top