![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.javagimmicks.collections.diff.Difference Maven / Gradle / Ivy
package net.sf.javagimmicks.collections.diff;
import java.util.List;
public interface Difference
{
public static final int NONE = -1;
public int getDeleteStartIndex();
public int getDeleteEndIndex();
public List getDeleteList();
public boolean isDelete();
public int getAddStartIndex();
public int getAddEndIndex();
public List getAddList();
public boolean isAdd();
public Difference invert();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy