com.baggonius.gson.immutable.ImmutableBiMapDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guava-gson-serializers Show documentation
Show all versions of guava-gson-serializers Show documentation
Serialization support with GSON for Guava immutable collections
The newest version!
package com.baggonius.gson.immutable;
import com.google.common.collect.ImmutableBiMap;
import java.util.Map;
public class ImmutableBiMapDeserializer extends BaseMapDeserializer> {
@Override
protected ImmutableBiMap, ?> buildFrom(Map, ?> map) {
return ImmutableBiMap.copyOf(map);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy