- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isPublicField (0.06 sec)
-
src/main/java/org/codelibs/core/lang/FieldUtil.java
* Checks if the given field is a public field. * * @param field the field (must not be {@literal null}) * @return {@literal true} if it is a public field */ public static boolean isPublicField(final Field field) { assertArgumentNotNull("field", field); return Modifier.isPublic(field.getModifiers()); } /** * Checks if the given field is a final 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
final PropertyDescImpl pd = (PropertyDescImpl) propertyDescCache.get(field.getName()); pd.setField(field); continue; } if (FieldUtil.isPublicField(field)) { final PropertyDescImpl pd = new PropertyDescImpl(field.getName(), field.getType(), null, null, field, this); propertyDescCache.put(fname, pd); } } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1)