me.xdrop.diffutils.structs.MatchingBlock 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 MatchingBlock {
public int spos;
public int dpos;
public int length;
@Override
public String toString() {
return "(" + spos + "," + dpos + "," + length + ")";
}
}