Rabbit-R1/switch port/java/sources/com/google/common/cache/RemovalCause.java
2024-05-21 17:08:36 -04:00

39 lines
1.2 KiB
Java

package com.google.common.cache;
@ElementTypesAreNonnullByDefault
/* loaded from: classes2.dex */
public enum RemovalCause {
EXPLICIT { // from class: com.google.common.cache.RemovalCause.1
@Override // com.google.common.cache.RemovalCause
boolean wasEvicted() {
return false;
}
},
REPLACED { // from class: com.google.common.cache.RemovalCause.2
@Override // com.google.common.cache.RemovalCause
boolean wasEvicted() {
return false;
}
},
COLLECTED { // from class: com.google.common.cache.RemovalCause.3
@Override // com.google.common.cache.RemovalCause
boolean wasEvicted() {
return true;
}
},
EXPIRED { // from class: com.google.common.cache.RemovalCause.4
@Override // com.google.common.cache.RemovalCause
boolean wasEvicted() {
return true;
}
},
SIZE { // from class: com.google.common.cache.RemovalCause.5
@Override // com.google.common.cache.RemovalCause
boolean wasEvicted() {
return true;
}
};
/* JADX INFO: Access modifiers changed from: package-private */
public abstract boolean wasEvicted();
}