Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/core/collection/LruHashMap.java

            super(initialCapacity, loadFactor, true);
            this.limitSize = limitSize;
        }
    
        /**
         * エントリ数の上限を返します。
         *
         * @return エントリ数の上限
         */
        public int getLimitSize() {
            return limitSize;
        }
    
        @Override
        protected boolean removeEldestEntry(final Map.Entry<K, V> entry) {
            return size() > limitSize;
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top