MCPcopy
hub / github.com/google/guava / unmodifiableOrNull

Method unmodifiableOrNull

guava/src/com/google/common/collect/Maps.java:3410–3413  ·  view source on GitHub ↗
(@Nullable Entry<K, ? extends V> entry)

Source from the content-addressed store, hash-verified

3408 }
3409
3410 private static <K extends @Nullable Object, V extends @Nullable Object>
3411 @Nullable Entry<K, V> unmodifiableOrNull(@Nullable Entry<K, ? extends V> entry) {
3412 return (entry == null) ? null : unmodifiableEntry(entry);
3413 }
3414
3415 @GwtIncompatible // NavigableMap
3416 private static final class UnmodifiableNavigableMap<

Callers 6

lowerEntryMethod · 0.45
floorEntryMethod · 0.45
ceilingEntryMethod · 0.45
higherEntryMethod · 0.45
firstEntryMethod · 0.45
lastEntryMethod · 0.45

Calls 1

unmodifiableEntryMethod · 0.95

Tested by

no test coverage detected