Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getLimitSize (0.19 sec)

  1. 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)
Back to top