Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isNotArray (0.26 sec)

  1. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

        /**
         *
         */
        @Test
        public void testIsNotArray() {
            assertTrue(ArrayUtil.isNotArray(null));
            assertTrue(ArrayUtil.isNotArray("hoge"));
            assertFalse(ArrayUtil.isNotArray(new Object[] {}));
            assertFalse(ArrayUtil.isNotArray(new Object[] { "" }));
            assertFalse(ArrayUtil.isNotArray(new Object[] { "aaa" }));
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/ArrayUtil.java

         *
         * @param object
         *            the object
         * @return {@literal true} if the object is not an array, or if the object is {@literal null}
         */
        public static boolean isNotArray(final Object object) {
            return !isArray(object);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 41.5K bytes
    - Viewed (0)
Back to top