org.aksw.commons.collections.diff.TreeSetDiff Maven / Gradle / Ivy
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