Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isFinalField (0.05 sec)

  1. src/main/java/org/codelibs/core/lang/FieldUtil.java

        /**
         * Checks if the given field is a final field.
         *
         * @param field the field (must not be {@literal null})
         * @return {@literal true} if it is a final field
         */
        public static boolean isFinalField(final Field field) {
            assertArgumentNotNull("field", field);
    
            return Modifier.isFinal(field.getModifiers());
        }
    
        /**
         * Returns the element type of a parameterized collection 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)
Back to top