- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getLimitSize (0.19 sec)
-
src/main/java/org/codelibs/core/collection/LruHashMap.java
this.limitSize = limitSize; } /** * Returns the upper limit on the number of entries. * * @return the upper limit on the number of entries */ public int getLimitSize() { return limitSize; } @Override protected boolean removeEldestEntry(final Map.Entry<K, V> entry) { return size() > limitSize; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.3K bytes - Viewed (0)