- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for KeyList (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java
* Registers this extractor with the ExtractorFactory. * @param keyList The list of keys to register this extractor under. */ public void register(final List<String> keyList) { if (keyList == null || keyList.isEmpty()) { throw new IllegalArgumentException("keyList must not be null or empty."); } getExtractorFactory().addExtractor(keyList, this); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
* * @param keyList the list of keys to associate with the extractor * @param extractor the extractor to add * @throws CrawlerSystemException if the key list is null or empty, or if the extractor is null */ public void addExtractor(final List<String> keyList, final Extractor extractor) { if (keyList == null || keyList.isEmpty()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableBiMap.java
} @Override ImmutableSet<K> createKeySet() { @SuppressWarnings("unchecked") ImmutableList<K> keyList = (ImmutableList<K>) new RegularImmutableMap.KeysOrValuesAsList(alternatingKeysAndValues, keyOffset, size); return new RegularImmutableMap.KeySet<>(this, keyList); } @Override boolean isPartialView() { return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 4.2K bytes - Viewed (0)