All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baggonius.gson.immutable.ImmutableSortedSetDeserializer Maven / Gradle / Ivy

The newest version!
package com.baggonius.gson.immutable;

import com.google.common.collect.ImmutableSortedSet;

import java.util.Collection;

public class ImmutableSortedSetDeserializer extends BaseCollectionDeserializer> {

  @Override
  protected ImmutableSortedSet buildFrom(Collection collection) {
    return ImmutableSortedSet.copyOf(collection);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy