static java.util.List<ExtractedResult> |
FuzzySearch.extractAll(java.lang.String query,
java.util.Collection<java.lang.String> choices) |
Creates a list of ExtractedResult which contain all the choices with
their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractAll(java.lang.String query,
java.util.Collection<java.lang.String> choices,
int cutoff) |
Creates a list of ExtractedResult which contain all the choices with
their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractAll(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func) |
Creates a list of ExtractedResult which contain all the choices with
their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractAll(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func,
int cutoff) |
Creates a list of ExtractedResult which contain all the choices with
their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractSorted(java.lang.String query,
java.util.Collection<java.lang.String> choices) |
Creates a sorted list of ExtractedResult which contain all the choices
with their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractSorted(java.lang.String query,
java.util.Collection<java.lang.String> choices,
int cutoff) |
Creates a sorted list of ExtractedResult which contain all the choices
with their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractSorted(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func) |
Creates a sorted list of ExtractedResult which contain all the choices
with their corresponding score where higher is more similar
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractSorted(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func,
int cutoff) |
Creates a sorted list of ExtractedResult which contain all the choices
with their corresponding score where higher is more similar
|
java.util.List<ExtractedResult> |
Extractor.extractTop(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
java.util.List<ExtractedResult> |
Extractor.extractTop(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func,
int limit) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractTop(java.lang.String query,
java.util.Collection<java.lang.String> choices,
int limit) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractTop(java.lang.String query,
java.util.Collection<java.lang.String> choices,
int limit,
int cutoff) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractTop(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func,
int limit) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
static java.util.List<ExtractedResult> |
FuzzySearch.extractTop(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func,
int limit,
int cutoff) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
java.util.List<ExtractedResult> |
Extractor.extractWithoutOrder(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func) |
Returns the list of choices with their associated scores of similarity in a list
of ExtractedResult
|