Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ECL0104 (0.15 sec)

  1. src/main/resources/CLMessages.properties

    ECL0100=Method({1}) of class({0}) is not a static method.
    ECL0101=File({0}) is not exist or not readable.
    ECL0102=File({0}) is not exist or not writable.
    ECL0103=Type({0}) is an interface not a class.
    ECL0104=Argument({0}) is not an array.
    ECL0105=Rethrew {0} as a runtime exception.
    ECL0106=IOException occurred, because {0}
    ECL0107=InvalidKeyException occurred, because {0}
    ECL0108=The path is null.
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/ArrayUtil.java

         */
        public static Object[] toObjectArray(final Object array) {
            assertArgumentNotNull("array", array);
            assertArgument("array", array.getClass().isArray(), MessageFormatter.getSimpleMessage("ECL0104", array));
    
            final int length = Array.getLength(array);
            final Object[] objectArray = new Object[length];
            for (int i = 0; i < length; i++) {
                objectArray[i] = Array.get(array, i);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 42.6K bytes
    - Viewed (0)
Back to top