Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mapDelimiter (2.29 sec)

  1. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         * </tr>
         * </table>
         *
         * @param mapDelimiter
         *            The delimiter for {@literal Map}.
         * @return A {@link CopyOptions} with the specified delimiter for {@literal Map}.
         * @see CopyOptions#mapDelimiter(char)
         */
        public static CopyOptions mapDelimiter(final char mapDelimiter) {
            return new CopyOptions().mapDelimiter(mapDelimiter);
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         * <td>{@literal foo.bar.baz}</td>
         * </tr>
         * </table>
         *
         * @param mapDelimiter
         *            The delimiter for {@link Map}
         * @return This instance itself
         */
        public CopyOptions mapDelimiter(final char mapDelimiter) {
            this.mapDelimiter = mapDelimiter;
            return this;
        }
    
        /**
         * Sets a converter.
         *
         * @param converter
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

         * @throws Exception
         */
        @Test
        public void testMapDelimiter() throws Exception {
            final CopyOptions option = new CopyOptions();
            assertThat(option.mapDelimiter('#'), is(sameInstance(option)));
            assertThat(option.mapDelimiter, is('#'));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testIsTargetProperty() throws Exception {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top