Uses of Class
nzilbb.editpath.DefaultEditComparator
-
Packages that use DefaultEditComparator Package Description nzilbb.editpath Implementation of Wagner-Fischer algorithm to determine the minimum edit path. -
-
Uses of DefaultEditComparator in nzilbb.editpath
Methods in nzilbb.editpath that return DefaultEditComparator Modifier and Type Method Description DefaultEditComparator<T>
DefaultEditComparator. setChangeDistance(int iNewChangeDistance)
Setter foriChangeDistance
: The distance represented by a change.DefaultEditComparator<T>
DefaultEditComparator. setComparator(Comparator<T> newComparator)
Setter forcomparator
: A comparator to use to determin equality, or null to use java.util.Object.equals(Object).DefaultEditComparator<T>
DefaultEditComparator. setDeleteDistance(int iNewDeleteDistance)
Setter foriDeleteDistance
: The distance represented by a deletion.DefaultEditComparator<T>
DefaultEditComparator. setInsertDistance(int iNewInsertDistance)
Setter foriInsertDistance
: The distance represented by an insertion.
-