Java com.google.common.cache RemovalCause fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.cache RemovalCause fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.cache RemovalCause.

The text is from its open source code.

Field

RemovalCauseEXPLICIT
The entry was manually removed by the user.
RemovalCauseREPLACED
The entry itself was not actually removed, but its value was replaced by the user.
RemovalCauseCOLLECTED
The entry was removed automatically because its key or value was garbage-collected.
RemovalCauseEXPIRED
The entry's expiration timestamp has passed.
RemovalCauseSIZE
The entry was evicted due to size constraints.