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

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

There is a newer version: 7.10.1
Show newest version
package org.testng.collections;

import java.util.Set;

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

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

  @Override
  protected Set createValue() {
    return Sets.newHashSet();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy