- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isInstanceField (0.06 sec)
-
src/main/java/org/codelibs/core/lang/ModifierUtil.java
* * @param field * the field to check. Must not be null. * @return true if instance field, false otherwise */ public static boolean isInstanceField(final Field field) { assertArgumentNotNull("field", field); final int m = field.getModifiers(); return !isStatic(m) && !isFinal(m); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
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)