net.jodah.expiringmap.ExpirationPolicy Maven / Gradle / Ivy
The newest version!
package net.jodah.expiringmap;
/**
* Determines how ExpiringMap entries should be expired.
*/
public enum ExpirationPolicy {
/** Expires entries based on when they were last accessed */
ACCESSED,
/** Expires entries based on when they were created */
CREATED;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy