Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for profil (0.26 sec)

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

         * また、コピー元のプロパティ名からプレフィックスを除去した名前がコピー先のプロパティ名となります。
         * </p>
         *
         * @param prefix
         *            プレフィックス。{@literal null}や空文字列であってはいけません
         * @return このインスタンス自身
         */
        public CopyOptions prefix(final CharSequence prefix) {
            assertArgumentNotEmpty("propertyNames", prefix);
    
            this.prefix = prefix.toString();
            return this;
        }
    
        /**
         * JavaBeansのデリミタを設定します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopyBeanToBean_prefix() throws Exception {
            final SrcBean src = new SrcBean();
            src.search_eee$fff = "hoge";
            final DestBean dest = new DestBean();
            BeanUtil.copyBeanToBean(src, dest, prefix(BeanNames.search_()));
            assertThat(dest.eee$fff, is("hoge"));
        }
    
        /**
         * @throws Exception
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 34.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

            assertArgumentNotNull("prefix", prefix);
            assertArgumentNotNull("handler", handler);
    
            final int startPos = prefix.length();
            for (final JarEntry entry : iterable(jarFile.entries())) {
                final String entryName = entry.getName().replace('\\', '/');
                if (entryName.startsWith(prefix) && entryName.endsWith(CLASS_SUFFIX)) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/TraversalUtil.java

            protected static final String WAR_CLASSES_PREFIX = "/WEB-INF/CLASSES/";
    
            /** ルートパッケージです。 */
            protected final String rootPackage;
    
            /** ルートディレクトリです。 */
            protected final String rootDir;
    
            /** ZipのURLです。 */
            protected final URL zipUrl;
    
            /** Zip内のエントリの接頭辞です。 */
            protected final String prefix;
    
            /** Zip内のエントリ名の{@link Set}です。 */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

            languages: ${{ matrix.language }}
            # If you wish to specify custom queries, you can do so here or in a config file.
            # By default, queries listed here will override any specified in a config file. 
            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
    Others
    - Registered: Fri Mar 01 20:58:10 GMT 2024
    - Last Modified: Wed Jan 19 23:41:02 GMT 2022
    - 2.5K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testPrefix() throws Exception {
            final CopyOptions option = new CopyOptions();
            assertThat(option.prefix(BeanNames.search_()), is(sameInstance(option)));
            assertThat(option.prefix, is("search_"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testBeanDelimiter() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         * </p>
         *
         * @param prefix
         *            プレフィックス。{@literal null}や空文字列であってはいけません
         * @return プレフィックスを指定した{@link CopyOptions}
         * @see CopyOptions#prefix(CharSequence)
         */
        public static CopyOptions prefix(final CharSequence prefix) {
            return new CopyOptions().prefix(prefix);
        }
    
        /**
         * JavaBeansのデリミタを設定した{@link CopyOptions}を返します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/StringUtil.java

         * @param text
         *            テキスト
         * @param prefix
         *            プレフィックス
         * @return 結果の文字列
         */
        public static final String trimPrefix(final String text, final String prefix) {
            if (text == null) {
                return null;
            }
            if (prefix == null) {
                return text;
            }
            if (text.startsWith(prefix)) {
                return text.substring(prefix.length());
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/io/ResourceUtil.java

            assertArgumentNotNull("clazz", clazz);
    
            if (isExist(path)) {
                return path;
            }
            final String prefix = clazz.getName().replace('.', '/').replaceFirst("/[^/]+$", "");
            final String extendedPath = prefix + "/" + path;
            if (ResourceUtil.getResourceNoException(extendedPath) != null) {
                return extendedPath;
            }
            return path;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

            assertArgumentNotNull("prefix", prefix);
            assertArgumentNotNull("handler", handler);
    
            final int pos = prefix.length();
            for (final JarEntry entry : iterable(jarFile.entries())) {
                if (!entry.isDirectory()) {
                    final String entryName = entry.getName().replace('\\', '/');
                    if (!entryName.startsWith(prefix)) {
                        continue;
                    }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top