Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endsWithFullstop (1.86 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    }
                }
                propMap.put(key, spaceChars);
            }
            return spaceChars;
        }
    
        String getCrawlerDocumentFullstopChars();
    
        default boolean endsWithFullstop(final String s) {
            if (StringUtil.isBlank(s)) {
                return false;
            }
            for (final int i : getCrawlerDocumentFullstopCharsAsArray()) {
                if (s.endsWith(String.valueOf(i))) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    texts[i] = fragments[i].string();
                }
                final String value = StringUtils.join(texts, ELLIPSIS);
                if (StringUtil.isNotBlank(value) && !ComponentUtil.getFessConfig().endsWithFullstop(value)) {
                    return value + ELLIPSIS;
                }
                return value;
            }
            return null;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top