Package me.xdrop.fuzzywuzzy.algorithms
Class DefaultStringProcessor
- java.lang.Object
-
- me.xdrop.fuzzywuzzy.StringProcessor
-
- me.xdrop.fuzzywuzzy.algorithms.DefaultStringProcessor
-
- All Implemented Interfaces:
ToStringFunction<java.lang.String>
@Deprecated public class DefaultStringProcessor extends StringProcessor
Deprecated.UseDefaultStringFunctioninstead.
-
-
Field Summary
-
Fields inherited from interface me.xdrop.fuzzywuzzy.ToStringFunction
NO_PROCESS
-
-
Constructor Summary
Constructors Constructor Description DefaultStringProcessor()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Stringprocess(java.lang.String in)Deprecated.Performs the default string processing on the input stringstatic java.lang.StringsubNonAlphaNumeric(java.lang.String in, java.lang.String sub)Deprecated.Substitute non alphanumeric characters.-
Methods inherited from class me.xdrop.fuzzywuzzy.StringProcessor
apply
-
-
-
-
Method Detail
-
subNonAlphaNumeric
public static java.lang.String subNonAlphaNumeric(java.lang.String in, java.lang.String sub)Deprecated.Substitute non alphanumeric characters.- Parameters:
in- The input stringsub- The string to substitute with- Returns:
- The replaced string
-
process
public java.lang.String process(java.lang.String in)
Deprecated.Performs the default string processing on the input string- Specified by:
processin classStringProcessor- Parameters:
in- Input string- Returns:
- The processed string
-
-