com.baggonius.gson.immutable.ImmutableSortedMapDeserializer 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.ImmutableMap;
import com.google.common.collect.ImmutableSortedMap;
import java.util.Map;
public class ImmutableSortedMapDeserializer extends BaseMapDeserializer> {
@Override
protected ImmutableMap, ?> buildFrom(Map, ?> map) {
return ImmutableSortedMap.copyOf(map);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy