- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for endsWithFullstop (0.07 sec)
-
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)