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

me.xdrop.diffutils.structs.MatchingBlock 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 MatchingBlock {
    public int spos;
    public int dpos;
    public int length;

    @Override
    public String toString() {
        return "(" + spos + "," + dpos + "," + length + ")";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy