Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 195 for strings (0.18 sec)

  1. src/test/resources/org/codelibs/core/message/strings.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 10 bytes
    - Viewed (0)
  2. src/test/resources/org/codelibs/core/message/strings_en.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 9 bytes
    - Viewed (0)
  3. src/test/resources/org/codelibs/core/message/strings_ja.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 14 bytes
    - Viewed (0)
  4. src/test/resources/org/codelibs/core/message/strings_en_US.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 12 bytes
    - Viewed (0)
  5. src/test/resources/org/codelibs/core/message/strings_ja_JP.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 18 bytes
    - Viewed (0)
  6. src/test/resources/org/codelibs/core/message/strings_ja_JP_WIN.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 22 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/StringUtil.java

                }
            }
            return new String(buf);
        }
    
        /**
         * 文字列を分割します。
         *
         * @param str
         *            文字列
         * @param delim
         *            分割するためのデリミタ
         * @return 分割された文字列の配列
         */
        public static String[] split(final String str, final String delim) {
            if (isEmpty(str)) {
                return EMPTY_STRINGS;
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ResourceUtil.java

         * @return リソース
         * @see #getResourcePath(String, String)
         */
        public static URL getResourceNoException(final String path, final String extension, final ClassLoader loader) {
            assertArgumentNotNull("loader", loader);
    
            if (path == null || loader == null) {
                return null;
            }
            final String p = getResourcePath(path, extension);
            return loader.getResource(p);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java

            final Vector<String> vector = new Vector<String>();
            vector.add("a");
            final EnumerationIterator<String> itr = new EnumerationIterator<String>(vector.elements());
            itr.remove();
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testNext() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/log/LoggerAdapter.java

    interface LoggerAdapter {
    
        boolean isFatalEnabled();
    
        void fatal(String message);
    
        void fatal(String message, Throwable t);
    
        boolean isErrorEnabled();
    
        void error(String message);
    
        void error(String message, Throwable t);
    
        boolean isWarnEnabled();
    
        void warn(String message);
    
        void warn(String message, Throwable t);
    
        boolean isInfoEnabled();
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top