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

me.xdrop.diffutils.structs.EditOp 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 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 + ")";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy