Toggle navigation
Home
java.util.Map to com.google.common.collect.ImmutableList
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'james-project'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> External
Mapping:
Add or Remove Method invocation
rowAttributes.entrySet().stream().map(entry -> Pair.of(entry.getKey(),fromByteBuffer(entry.getValue())))
to
rowAttributes.entrySet().stream().map(entry -> new Attribute(AttributeName.of(entry.getKey()),fromByteBuffer(entry.getValue())))
Guavate.toImmutableMap(Pair::getLeft,Pair::getRight)
to
Guavate.toImmutableList()