- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for isInstanceField (0.06 seconds)
-
src/main/java/org/codelibs/core/lang/FieldUtil.java
* Checks if the given field is an instance field. * * @param field the field (must not be {@literal null}) * @return {@literal true} if it is an instance field */ public static boolean isInstanceField(final Field field) { assertArgumentNotNull("field", field); return !Modifier.isStatic(field.getModifiers()); } /** * Checks if the given field is a public field. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 9.8K bytes - Click Count (0) -
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());Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1)