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 classEditDistance.GenericArrayWrapper<T>Implementation of ArrayWrapper for generic objects of type T.protected static classEditDistance.StringArrayWrapperSpecific implementation of ArrayWrapper for Strings.Methods in com.irurueta.commons with parameters of type EditDistance.ArrayWrapper Modifier and Type Method Description private static <T> intEditDistance. distance(EditDistance.ArrayWrapper<T> x, EditDistance.ArrayWrapper<T> y)Computes Levenshtein distance between two arrays of type T.booleanEditDistance.ArrayWrapper. equals(EditDistance.ArrayWrapper<T> other, int posX, int posY)Compares this array in position x, with the other object at position y.booleanEditDistance.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.booleanEditDistance.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.
-