org.testng.collections.ListMultiMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
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 - 2025 Weber Informatics LLC | Privacy Policy