All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xdrop.diffutils.structs.OpCode Maven / Gradle / Ivy

Go to download

Fuzzy string searching implementation of the well-known fuzzywuzzy algorithm in Java

There is a newer version: 1.4.0
Show newest version
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