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

org.aksw.commons.collections.diff.TreeSetDiff Maven / Gradle / Ivy

There is a newer version: 0.9.9
Show newest version
package org.aksw.commons.collections.diff;

import java.util.Comparator;
import java.util.Set;
import java.util.TreeSet;

/**
 * @author Claus Stadler
 *         

* Date: 7/12/11 * Time: 10:53 PM */ public class TreeSetDiff extends CollectionDiff> { /* * public SetDiff(Comparator comparator) { } */ public TreeSetDiff() { super(new TreeSet(), new TreeSet(), new TreeSet()); } public TreeSetDiff(Comparator comparator) { super(new TreeSet(comparator), new TreeSet(comparator), new TreeSet(comparator)); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy