Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for notEquals (0.04 sec)

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

         * Returns true if the two objects are not equal.
         *
         * @param o1 the first object
         * @param o2 the second object
         * @return true if not equal, false otherwise
         */
        public static boolean notEquals(final Object o1, final Object o2) {
            return !equals(o1, o2);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top