package com.google.common.cache; import com.google.common.base.Preconditions; import java.util.AbstractMap; /* loaded from: classes2.dex */ public final class RemovalNotification extends AbstractMap.SimpleImmutableEntry { private static final long serialVersionUID = 0; private final RemovalCause cause; public static RemovalNotification create(K k, V v, RemovalCause removalCause) { return new RemovalNotification<>(k, v, removalCause); } private RemovalNotification(K k, V v, RemovalCause removalCause) { super(k, v); this.cause = (RemovalCause) Preconditions.checkNotNull(removalCause); } public final boolean wasEvicted() { return this.cause.wasEvicted(); } public final RemovalCause getCause() { return this.cause; } }