Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java

         * and removing the "Searcher" suffix.
         *
         * @return the searcher name
         */
        public String getName() {
            if (name == null) {
                name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH);
            }
            return name;
        }
    
        /**
         * Executes a search operation with the specified parameters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/StringUtil.java

         * <p>
         * Usage example:
         * </p>
         *
         * <pre>
         * StringUtil.decamelize("UserId")  = "USER_ID"
         * </pre>
         *
         * @param s
         *            the text
         * @return the resulting string
         */
        public static String decamelize(final String s) {
            if (s == null) {
                return null;
            }
            if (s.length() == 1) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
Back to top