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

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

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

import com.google.common.collect.ImmutableList;

import java.util.Collection;

public class ImmutableListDeserializer extends BaseCollectionDeserializer> {

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy