Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mjp2 (0.03 sec)

  1. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            final Map<String, Object> map = newHashMap();
            map.put("aaa", new Integer(1000));
            final Map<String, Object> map2 = newHashMap();
            BeanUtil.copyMapToMap(map, map2, converter(new NumberConverter("#,##0")));
            assertEquals("1,000", map2.get("aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopyMapToMap_converter2() throws Exception {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/MediaType.java

      /**
       * <a href="https://tools.ietf.org/html/rfc3745">JP2K image format</a>.
       *
       * @since 28.1
       */
      public static final MediaType JP2K = createConstant(IMAGE_TYPE, "jp2");
    
      /* audio types */
      public static final MediaType MP4_AUDIO = createConstant(AUDIO_TYPE, "mp4");
      public static final MediaType MPEG_AUDIO = createConstant(AUDIO_TYPE, "mpeg");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top