All Downloads are FREE. Search and download functionalities are using the official Maven repository.

keycloakjar.com.github.benmanes.caffeine.cache.RemovalCause Maven / Gradle / Ivy

There is a newer version: 7.21.1
Show newest version
/*
 * Copyright 2014 Ben Manes. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.benmanes.caffeine.cache;

/**
 * The reason why a cached entry was removed.
 *
 * @author [email protected] (Ben Manes)
 */
public enum RemovalCause {

  /**
   * The entry was manually removed by the user. This can result from the user invoking any of the
   * following methods on the cache or map view.
   * 
    *
  • {@link Cache#invalidate}
  • *
  • {@link Cache#invalidateAll(Iterable)}
  • *
  • {@link Cache#invalidateAll()}
  • *
  • {@link LoadingCache#refresh}
  • *
  • {@link java.util.Map#remove}
  • *
  • {@link java.util.Map#computeIfPresent}
  • *
  • {@link java.util.Map#compute}
  • *
  • {@link java.util.Map#merge}
  • *
  • {@link java.util.concurrent.ConcurrentMap#remove}
  • *
* A manual removal may also be performed through the key, value, or entry collections views by * the user invoking any of the following methods. *
    *
  • {@link java.util.Collection#remove}
  • *
  • {@link java.util.Collection#removeAll}
  • *
  • {@link java.util.Collection#removeIf}
  • *
  • {@link java.util.Collection#retainAll}
  • *
  • {@link java.util.Iterator#remove}
  • *
*/ EXPLICIT { @Override public boolean wasEvicted() { return false; } }, /** * The entry itself was not actually removed, but its value was replaced by the user. This can * result from the user invoking any of the following methods on the cache or map view. *
    *
  • {@link Cache#put}
  • *
  • {@link Cache#putAll}
  • *
  • {@link LoadingCache#getAll}
  • *
  • {@link LoadingCache#refresh}
  • *
  • {@link java.util.Map#put}
  • *
  • {@link java.util.Map#putAll}
  • *
  • {@link java.util.Map#replace}
  • *
  • {@link java.util.Map#computeIfPresent}
  • *
  • {@link java.util.Map#compute}
  • *
  • {@link java.util.Map#merge}
  • *
*/ REPLACED { @Override public boolean wasEvicted() { return false; } }, /** * The entry was removed automatically because its key or value was garbage-collected. This * can occur when using {@link Caffeine#weakKeys}, {@link Caffeine#weakValues}, or * {@link Caffeine#softValues}. */ COLLECTED { @Override public boolean wasEvicted() { return true; } }, /** * The entry's expiration timestamp has passed. This can occur when using * {@link Caffeine#expireAfterWrite}, {@link Caffeine#expireAfterAccess}, * or {@link Caffeine#expireAfter(Expiry)}. */ EXPIRED { @Override public boolean wasEvicted() { return true; } }, /** * The entry was evicted due to size constraints. This can occur when using * {@link Caffeine#maximumSize} or {@link Caffeine#maximumWeight}. */ SIZE { @Override public boolean wasEvicted() { return true; } }; /** * Returns {@code true} if there was an automatic removal due to eviction (the cause is neither * {@link #EXPLICIT} nor {@link #REPLACED}). * * @return if the entry was automatically removed due to eviction */ public abstract boolean wasEvicted(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy