Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for Strings (0.21 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_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)
  3. 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)
  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/test/java/org/codelibs/core/collection/ArrayMapTest.java

            ArrayMap<String, String> m = new ArrayMap<String, String>(1);
            m.getEntryAt(1);
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSerialize() throws Exception {
            @SuppressWarnings("unchecked")
            ArrayMap<String, String> copy = (ArrayMap<String, String>) SerializeUtil.serialize(map);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

             *
             */
            public String ggg;
    
            /**
             * @return String
             */
            public String getAaa() {
                return aaa;
            }
    
            /**
             * @param a
             * @return String
             */
            public String getBbb(final Object a) {
                return null;
            }
    
            /**
             * @return boolean
             */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java

            map = new HashMap<String, String>();
            assertThat(CollectionsUtil.isEmpty(map), is(true));
        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.collection.CollectionsUtil#isNotEmpty(java.util.Map)}
         * .
         */
        @Test
        public void testIsNotEmptyMapOfQQ() {
            final HashMap<String, String> map = new HashMap<String, String>();
            map.put("key", "value");
    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)
  10. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

         * @return 変換された{@literal String}
         */
        public static String toString(final Object value) {
            return toString(value, null);
        }
    
        /**
         * 文字列に変換します。
         *
         * @param value
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
         * @return 変換された{@literal String}
         */
        public static String toString(final Object value, final String pattern) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top