Skip navigation links
A B C D E F G L M N O P R S T U V W 

A

Applicable - Interface in me.xdrop.fuzzywuzzy
A ratio/algorithm that can be applied
apply(String, String, StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 
apply(String, String) - Method in class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 
apply(String, String, Ratio, StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
apply(String, String, Ratio) - Method in class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
apply(String, String, StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
apply(String, String, Ratio, StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.TokenSet
 
apply(String, String, Ratio, StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.TokenSort
 
apply(String, String, StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.WeightedRatio
 
apply(String, String) - Method in interface me.xdrop.fuzzywuzzy.Applicable
Apply the ratio/algorithm to the input strings
apply(String, String) - Method in interface me.xdrop.fuzzywuzzy.Ratio
Applies the ratio between the two strings
apply(String, String) - Method in class me.xdrop.fuzzywuzzy.ratios.PartialRatio
Computes a partial ratio between the strings
apply(String, String) - Method in class me.xdrop.fuzzywuzzy.ratios.SimpleRatio
Computes a simple Levenshtein distance ratio between the strings

B

BasicAlgorithm - Class in me.xdrop.fuzzywuzzy.algorithms
 
BasicAlgorithm() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 
BasicAlgorithm(StringProcessor) - Constructor for class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 

C

compareTo(ExtractedResult) - Method in class me.xdrop.fuzzywuzzy.model.ExtractedResult
 

D

dbeg - Variable in class me.xdrop.diffutils.structs.OpCode
 
DefaultStringProcessor - Class in me.xdrop.fuzzywuzzy.algorithms
 
DefaultStringProcessor() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.DefaultStringProcessor
 
dend - Variable in class me.xdrop.diffutils.structs.OpCode
 
DiffUtils - Class in me.xdrop.diffutils
This is a port of all the functions needed from python-levenshtein C implementation.
DiffUtils() - Constructor for class me.xdrop.diffutils.DiffUtils
 
dpos - Variable in class me.xdrop.diffutils.structs.EditOp
 
dpos - Variable in class me.xdrop.diffutils.structs.MatchingBlock
 

E

EditOp - Class in me.xdrop.diffutils.structs
 
EditOp() - Constructor for class me.xdrop.diffutils.structs.EditOp
 
EditType - Enum in me.xdrop.diffutils.structs
 
extractAll(String, Collection<String>, Applicable) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractAll(String, Collection<String>, Applicable, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractAll(String, Collection<String>) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractAll(String, Collection<String>, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
ExtractedResult - Class in me.xdrop.fuzzywuzzy.model
 
ExtractedResult(String, int) - Constructor for class me.xdrop.fuzzywuzzy.model.ExtractedResult
 
extractOne(String, Collection<String>, Applicable) - Method in class me.xdrop.fuzzywuzzy.Extractor
Find the single best match above a score in a list of choices.
extractOne(String, Collection<String>, Applicable) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Find the single best match above a score in a list of choices.
extractOne(String, Collection<String>) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Find the single best match above a score in a list of choices.
Extractor - Class in me.xdrop.fuzzywuzzy
 
Extractor() - Constructor for class me.xdrop.fuzzywuzzy.Extractor
 
Extractor(int) - Constructor for class me.xdrop.fuzzywuzzy.Extractor
 
extractSorted(String, Collection<String>, Applicable) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractSorted(String, Collection<String>, Applicable, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractSorted(String, Collection<String>) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractSorted(String, Collection<String>, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain all the choices with their corresponding score where higher is more similar
extractTop(String, Collection<String>, Applicable) - Method in class me.xdrop.fuzzywuzzy.Extractor
Creates a sorted list of ExtractedResult which contain the top @param limit most similar choices
extractTop(String, Collection<String>, Applicable, int) - Method in class me.xdrop.fuzzywuzzy.Extractor
Creates a sorted list of ExtractedResult which contain the top @param limit most similar choices
extractTop(String, Collection<String>, Applicable, int, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain the top @param limit most similar choices
extractTop(String, Collection<String>, int, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain the top @param limit most similar choices
extractTop(String, Collection<String>, Applicable, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain the top @param limit most similar choices
extractTop(String, Collection<String>, int) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Creates a sorted list of ExtractedResult which contain the top @param limit most similar choices
extractWithoutOrder(String, Collection<String>, Applicable) - Method in class me.xdrop.fuzzywuzzy.Extractor
Returns the list of choices with their associated scores of similarity in a list of ExtractedResult

F

findTopKHeap(List<T>, int) - Static method in class me.xdrop.fuzzywuzzy.algorithms.Utils
 
FuzzySearch - Class in me.xdrop.fuzzywuzzy
FuzzySearch facade class
FuzzySearch() - Constructor for class me.xdrop.fuzzywuzzy.FuzzySearch
 

G

getCutoff() - Method in class me.xdrop.fuzzywuzzy.Extractor
 
getEditOps(String, String) - Static method in class me.xdrop.diffutils.DiffUtils
 
getMatchingBlocks(String, String) - Static method in class me.xdrop.diffutils.DiffUtils
 
getMatchingBlocks(int, int, OpCode[]) - Static method in class me.xdrop.diffutils.DiffUtils
 
getRatio(String, String) - Static method in class me.xdrop.diffutils.DiffUtils
 
getRatio() - Method in class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
getScore() - Method in class me.xdrop.fuzzywuzzy.model.ExtractedResult
 
getString() - Method in class me.xdrop.fuzzywuzzy.model.ExtractedResult
 
getStringProcessor() - Method in class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 

L

length - Variable in class me.xdrop.diffutils.structs.MatchingBlock
 

M

MatchingBlock - Class in me.xdrop.diffutils.structs
 
MatchingBlock() - Constructor for class me.xdrop.diffutils.structs.MatchingBlock
 
me.xdrop.diffutils - package me.xdrop.diffutils
 
me.xdrop.diffutils.structs - package me.xdrop.diffutils.structs
 
me.xdrop.fuzzywuzzy - package me.xdrop.fuzzywuzzy
 
me.xdrop.fuzzywuzzy.algorithms - package me.xdrop.fuzzywuzzy.algorithms
 
me.xdrop.fuzzywuzzy.model - package me.xdrop.fuzzywuzzy.model
 
me.xdrop.fuzzywuzzy.ratios - package me.xdrop.fuzzywuzzy.ratios
 

N

NoProcess - Class in me.xdrop.fuzzywuzzy.algorithms
 
NoProcess() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.NoProcess
 
noProcessor() - Method in class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 

O

OpCode - Class in me.xdrop.diffutils.structs
 
OpCode() - Constructor for class me.xdrop.diffutils.structs.OpCode
 

P

PARTIAL_SCALE - Static variable in class me.xdrop.fuzzywuzzy.algorithms.WeightedRatio
 
partialRatio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Inconsistent substrings lead to problems in matching.
PartialRatio - Class in me.xdrop.fuzzywuzzy.ratios
Partial ratio of similarity
PartialRatio() - Constructor for class me.xdrop.fuzzywuzzy.ratios.PartialRatio
 
process(String) - Method in class me.xdrop.fuzzywuzzy.algorithms.DefaultStringProcessor
Performs the default string processing on the input string
process(String) - Method in class me.xdrop.fuzzywuzzy.algorithms.NoProcess
 
process(String) - Method in interface me.xdrop.fuzzywuzzy.StringProcessor
Transforms the input string

R

ratio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Calculates a Levenshtein simple ratio between the strings.
Ratio - Interface in me.xdrop.fuzzywuzzy
Interface for the different ratios
RatioAlgorithm - Class in me.xdrop.fuzzywuzzy.algorithms
 
RatioAlgorithm() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
RatioAlgorithm(StringProcessor) - Constructor for class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
RatioAlgorithm(Ratio) - Constructor for class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
RatioAlgorithm(StringProcessor, Ratio) - Constructor for class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 

S

sbeg - Variable in class me.xdrop.diffutils.structs.OpCode
 
send - Variable in class me.xdrop.diffutils.structs.OpCode
 
setCutoff(int) - Method in class me.xdrop.fuzzywuzzy.Extractor
 
setRatio(Ratio) - Method in class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
setString(String) - Method in class me.xdrop.fuzzywuzzy.model.ExtractedResult
 
SimpleRatio - Class in me.xdrop.fuzzywuzzy.ratios
 
SimpleRatio() - Constructor for class me.xdrop.fuzzywuzzy.ratios.SimpleRatio
 
spos - Variable in class me.xdrop.diffutils.structs.EditOp
 
spos - Variable in class me.xdrop.diffutils.structs.MatchingBlock
 
StringProcessor - Interface in me.xdrop.fuzzywuzzy
Transforms the input string
subNonAlphaNumeric(String, String) - Static method in class me.xdrop.fuzzywuzzy.algorithms.DefaultStringProcessor
Substitute non alphanumeric characters.

T

TokenSet - Class in me.xdrop.fuzzywuzzy.algorithms
 
TokenSet() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.TokenSet
 
tokenSetPartialRatio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Splits the strings into tokens and computes intersections and remainders between the tokens of the two strings.
tokenSetPartialRatio(String, String, StringProcessor) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Splits the strings into tokens and computes intersections and remainders between the tokens of the two strings.
tokenSetRatio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Splits the strings into tokens and computes intersections and remainders between the tokens of the two strings.
tokenSetRatio(String, String, StringProcessor) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Splits the strings into tokens and computes intersections and remainders between the tokens of the two strings.
TokenSort - Class in me.xdrop.fuzzywuzzy.algorithms
 
TokenSort() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.TokenSort
 
tokenSortPartialRatio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Find all alphanumeric tokens in the string and sort those tokens and then take ratio of resulting joined strings.
tokenSortPartialRatio(String, String, StringProcessor) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Find all alphanumeric tokens in the string and sort those tokens and then take ratio of resulting joined strings.
tokenSortRatio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Find all alphanumeric tokens in the string and sort those tokens and then take ratio of resulting joined strings.
tokenSortRatio(String, String, StringProcessor) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Find all alphanumeric tokens in the string and sort those tokens and then take ratio of resulting joined strings.
toString() - Method in class me.xdrop.diffutils.structs.EditOp
 
toString() - Method in class me.xdrop.diffutils.structs.MatchingBlock
 
toString() - Method in class me.xdrop.diffutils.structs.OpCode
 
toString() - Method in class me.xdrop.fuzzywuzzy.model.ExtractedResult
 
TRY_PARTIALS - Static variable in class me.xdrop.fuzzywuzzy.algorithms.WeightedRatio
 
type - Variable in class me.xdrop.diffutils.structs.EditOp
 
type - Variable in class me.xdrop.diffutils.structs.OpCode
 

U

UNBASE_SCALE - Static variable in class me.xdrop.fuzzywuzzy.algorithms.WeightedRatio
 
Utils - Class in me.xdrop.fuzzywuzzy.algorithms
 
Utils() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.Utils
 

V

valueOf(String) - Static method in enum me.xdrop.diffutils.structs.EditType
Returns the enum constant of this type with the specified name.
values() - Static method in enum me.xdrop.diffutils.structs.EditType
Returns an array containing the constants of this enum type, in the order they are declared.

W

WeightedRatio - Class in me.xdrop.fuzzywuzzy.algorithms
 
WeightedRatio() - Constructor for class me.xdrop.fuzzywuzzy.algorithms.WeightedRatio
 
weightedRatio(String, String) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Calculates a weighted ratio between the different algorithms for best results
weightedRatio(String, String, StringProcessor) - Static method in class me.xdrop.fuzzywuzzy.FuzzySearch
Calculates a weighted ratio between the different algorithms for best results
with(StringProcessor) - Method in class me.xdrop.fuzzywuzzy.algorithms.BasicAlgorithm
 
with(Ratio) - Method in class me.xdrop.fuzzywuzzy.algorithms.RatioAlgorithm
 
with(int) - Method in class me.xdrop.fuzzywuzzy.Extractor
 
A B C D E F G L M N O P R S T U V W 
Skip navigation links

Copyright © 2016. All rights reserved.