- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for spaceChars (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* * @param spaceChars an array of integers representing space characters * @return the current instance of TextNormalizeContext for method chaining */ public TextNormalizeContext spaceChars(final int[] spaceChars) { this.spaceChars = spaceChars; return this; } } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
if (title == null) { return StringUtil.EMPTY; // empty } final int[] spaceChars = getSpaceChars(); try (final Reader reader = new StringReader(title)) { return TextUtil.normalizeText(reader).initialCapacity(title.length()).spaceChars(spaceChars).execute(); } catch (final IOException e) { return StringUtil.EMPTY; // empty } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
this.maxSymbolTermSize = maxSymbolTermSize; } /** * Sets the space characters. * @param spaceChars The space characters. */ public void setSpaceChars(final int[] spaceChars) { this.spaceChars = spaceChars; } /** * Sets the Tika configuration. * @param tikaConfig The Tika config. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K bytes - Viewed (0)