Searched defs:RemovalNotification (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java40 public final class RemovalNotification<K, V> implements Entry<K, V> { class in inherits:Entry
45 RemovalNotification(@Nullable K key, @Nullable V value, RemovalCause cause) { method in class:RemovalNotification
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java732 void onRemoval(RemovalNotification<K, V> notification);
742 static final class RemovalNotification<K, V> extends ImmutableEntry<K, V> { class in class:MapMaker
747 RemovalNotification(@Nullable K key, @Nullable V value, RemovalCause cause) { method in class:MapMaker.RemovalNotification
868 RemovalNotification<K, V> notification =
869 new RemovalNotification<K, V>(key, value, removalCause);

Completed in 182 milliseconds