Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for maps (0.22 sec)

  1. src/main/java/org/codelibs/core/text/DecimalFormatSymbolsUtil.java

    import java.text.DecimalFormatSymbols;
    import java.util.Locale;
    import java.util.Map;
    
    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * {@link DecimalFormatSymbols}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class DecimalFormatSymbolsUtil {
    
        private static final Map<Locale, DecimalFormatSymbols> CACHE = newConcurrentHashMap();
    
        /**
         * {@link DecimalFormatSymbols}を返します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            }
        }
    
        /**
         * {@literal Map}から{@literal Map}にコピーを行います。
         *
         * @param src コピー元の{@literal Map}。{@literal null}であってはいけません
         * @param dest コピー先の{@literal Map}。{@literal null}であってはいけません
         */
        public static void copyMapToMap(final Map<String, ? extends Object> src, final Map<String, Object> dest) {
            copyMapToMap(src, dest, DEFAULT_OPTIONS);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

            }
        }
    
        /**
         * リソースバンドルを{@link Map}に変換します。
         *
         * @param bundle
         *            リソースバンドル。{@literal null}であってはいけません
         * @return {@link Map}
         */
        public static final Map<String, String> convertMap(final ResourceBundle bundle) {
            assertArgumentNotNull("bundle", bundle);
    
            final Map<String, String> ret = newHashMap();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/io/ResourceBundleUtilTest.java

            final ResourceBundle bundle = ResourceBundleUtil.getBundle("CLMessages", null);
            final Map<String, String> map = ResourceBundleUtil.convertMap(bundle);
            final String value = map.get("ECL0001");
            System.out.println(value);
            assertThat(value, is(notNullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetBundle() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

         *
         * @param type
         *            型
         * @param map
         *            パラメータ化された型が持つ型変数をキー、型引数を値とする{@link Map}
         * @return 型を表現する{@link ParameterizedClassDesc}
         */
        protected static ParameterizedClassDesc createParameterizedClassDesc(final Type type, final Map<TypeVariable<?>, Type> map) {
            final Class<?> rowClass = getActualClass(type, map);
            if (rowClass == null) {
                return null;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

     */
    package org.codelibs.core.beans.impl;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.lang.reflect.Field;
    import java.util.Collection;
    import java.util.Map;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.FieldDesc;
    import org.codelibs.core.beans.ParameterizedClassDesc;
    import org.codelibs.core.beans.factory.ParameterizedClassDescFactory;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/LruHashMap.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.collection;
    
    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * エントリ数の上限を持ち、新しいエントリが追加されるとLRUで古いエントリを破棄する{@link HashMap}です。
     *
     * @author koichik
     * @param <K>
     *            キーの型
     * @param <V>
     *            値の型
     */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/main/resources/CLMessages.properties

    ECL0009=argument[{0}] is illegal. because {1}.
    ECL0010=argument[{0}] is null or empty string.
    ECL0011=argument[{0}] is null or empty array.
    ECL0012=argument[{0}] is null or empty collection.
    ECL0013=argument[{0}] is null or empty map.
    ECL0014=argument[{0}] which is null the index of array is negative integer.
    ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].
    ECL0016=key[{0}] is not included in this BeanMap : {1}.
    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)
Back to top