- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isInstanceField (0.17 sec)
-
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. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K bytes - Viewed (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());
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1)