Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Sundae (0.2 sec)

  1. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

         *
         * @param bundle
         *            リソースバンドル。{@literal null}や空文字列であってはいけません
         * @param key
         *            キー
         * @return 指定されたキーの文字列。{@literal null}や空文字列であってはいけません
         * @see ResourceBundle#getString(String)
         */
        public static String getString(final ResourceBundle bundle, final String key) {
            assertArgumentNotNull("bundle", bundle);
            assertArgumentNotEmpty("key", key);
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top