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

org.testng.collections.ListMultiMap Maven / Gradle / Ivy

package org.testng.collections;


import java.util.List;

/**
 * A container to hold lists indexed by a key.
 */
public class ListMultiMap extends MultiMap> {

  public ListMultiMap(boolean isSorted) {
    super(isSorted);
  }

  @Override
  protected List createValue() {
    return Lists.newArrayList();
  }

  @Deprecated
  public static  ListMultiMap create() {
    return Maps.newListMultiMap();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy