- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for isPublicField (0.04 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)