Uses of Interface
com.irurueta.commons.EditDistance.ArrayWrapper
-
Packages that use EditDistance.ArrayWrapper Package Description com.irurueta.commons This package is the base package for all Java SE common classes. -
-
Uses of EditDistance.ArrayWrapper in com.irurueta.commons
Classes in com.irurueta.commons that implement EditDistance.ArrayWrapper Modifier and Type Class Description protected static class
EditDistance.GenericArrayWrapper<T>
Implementation of ArrayWrapper for generic objects of type T.protected static class
EditDistance.StringArrayWrapper
Specific implementation of ArrayWrapper for Strings.Methods in com.irurueta.commons with parameters of type EditDistance.ArrayWrapper Modifier and Type Method Description private static <T> int
EditDistance. distance(EditDistance.ArrayWrapper<T> x, EditDistance.ArrayWrapper<T> y)
Computes Levenshtein distance between two arrays of type T.boolean
EditDistance.ArrayWrapper. equals(EditDistance.ArrayWrapper<T> other, int posX, int posY)
Compares this array in position x, with the other object at position y.boolean
EditDistance.GenericArrayWrapper. equals(EditDistance.ArrayWrapper<T[]> other, int posX, int posY)
Compares the array contained in this instance at position X with the array contained in the other array wrapper at position Y.boolean
EditDistance.StringArrayWrapper. equals(EditDistance.ArrayWrapper<java.lang.String> other, int posX, int posY)
Compares the string contained in this instance at position x with the string contained in the other array wrapper at position y.
-