MCPcopy Create free account
hub / github.com/antlr/codebuff / unmodifiableOrNull

Method unmodifiableOrNull

output/java_guava/1.4.19/Maps.java:3254–3257  ·  view source on GitHub ↗
(@Nullable Entry<K, V> entry)

Source from the content-addressed store, hash-verified

3252 }
3253
3254 @Nullable
3255 private static <K, V> Entry<K, V> unmodifiableOrNull(@Nullable Entry<K, V> entry) {
3256 return (entry == null) ? null : Maps.unmodifiableEntry(entry);
3257 }
3258
3259 @GwtIncompatible // NavigableMap
3260 static class UnmodifiableNavigableMap<K, V> extends ForwardingSortedMap<K, V>

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