me.xdrop.diffutils.structs.EditOp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fuzzywuzzy Show documentation
Show all versions of fuzzywuzzy Show documentation
Fuzzy string searching implementation of the well-known fuzzywuzzy algorithm in Java
package me.xdrop.diffutils.structs;
public final class EditOp {
public EditType type;
public int spos; // source block pos
public int dpos; // destination block pos
@Override
public String toString() {
return type.name() + "(" + spos + "," + dpos + ")";
}
}