![JAR search and dependency download from the Maven repository](/logo.png)
me.xdrop.diffutils.structs.OpCode 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 OpCode {
public EditType type;
public int sbeg, send;
public int dbeg, dend;
@Override
public String toString() {
return type.name() + "(" + sbeg + "," + send + ","
+ dbeg + "," + dend + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy