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

/external/guava/guava/src/com/google/common/base/
H A DFunctions.java144 return new ForMapWithDefault<K, V>(map, defaultValue);
147 private static class ForMapWithDefault<K, V> implements Function<K, V>, Serializable { class in class:Functions
151 ForMapWithDefault(Map<K, ? extends V> map, @Nullable V defaultValue) { method in class:Functions.ForMapWithDefault
163 if (o instanceof ForMapWithDefault) {
164 ForMapWithDefault<?, ?> that = (ForMapWithDefault<?, ?>) o;

Completed in 145 milliseconds