com.baggonius.gson.immutable.ImmutableSetDeserializer 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.ImmutableSet;
import java.util.Collection;
public class ImmutableSetDeserializer extends BaseCollectionDeserializer> {
@Override
protected ImmutableSet> buildFrom(Collection> collection) {
return ImmutableSet.copyOf(collection);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy