| Package | Description |
|---|---|
| me.xdrop.fuzzywuzzy | |
| me.xdrop.fuzzywuzzy.model |
| Modifier and Type | Method | Description |
|---|---|---|
ExtractedResult |
Extractor.extractOne(String query,
Collection<String> choices,
Applicable func) |
Find the single best match above a score in a list of choices.
|
static ExtractedResult |
FuzzySearch.extractOne(String query,
Collection<String> choices) |
Find the single best match above a score in a list of choices.
|
static ExtractedResult |
FuzzySearch.extractOne(String query,
Collection<String> choices,
Applicable func) |
Find the single best match above a score in a list of choices.
|
| Modifier and Type | Method | Description |
|---|---|---|
static List<ExtractedResult> |
FuzzySearch.extractAll(String query,
Collection<String> choices) |
Creates a list of
ExtractedResult which contain all the choices with
their corresponding score where higher is more similar |
static List<ExtractedResult> |
FuzzySearch.extractAll(String query,
Collection<String> choices,
int cutoff) |
Creates a list of
ExtractedResult which contain all the choices with
their corresponding score where higher is more similar |
static List<ExtractedResult> |
FuzzySearch.extractAll(String query,
Collection<String> choices,
Applicable func) |
Creates a list of
ExtractedResult which contain all the choices with
their corresponding score where higher is more similar |
static List<ExtractedResult> |
FuzzySearch.extractAll(String query,
Collection<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 List<ExtractedResult> |
FuzzySearch.extractSorted(String query,
Collection<String> choices) |
Creates a sorted list of
ExtractedResult which contain all the choices
with their corresponding score where higher is more similar |
static List<ExtractedResult> |
FuzzySearch.extractSorted(String query,
Collection<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 List<ExtractedResult> |
FuzzySearch.extractSorted(String query,
Collection<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 List<ExtractedResult> |
FuzzySearch.extractSorted(String query,
Collection<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 |
List<ExtractedResult> |
Extractor.extractTop(String query,
Collection<String> choices,
Applicable func) |
Creates a sorted list of
ExtractedResult which contain the
top @param limit most similar choices |
List<ExtractedResult> |
Extractor.extractTop(String query,
Collection<String> choices,
Applicable func,
int limit) |
Creates a sorted list of
ExtractedResult which contain the
top @param limit most similar choices |
static List<ExtractedResult> |
FuzzySearch.extractTop(String query,
Collection<String> choices,
int limit) |
Creates a sorted list of
ExtractedResult which contain the
top @param limit most similar choices |
static List<ExtractedResult> |
FuzzySearch.extractTop(String query,
Collection<String> choices,
int limit,
int cutoff) |
Creates a sorted list of
ExtractedResult which contain the
top @param limit most similar choices |
static List<ExtractedResult> |
FuzzySearch.extractTop(String query,
Collection<String> choices,
Applicable func,
int limit) |
Creates a sorted list of
ExtractedResult which contain the
top @param limit most similar choices |
static List<ExtractedResult> |
FuzzySearch.extractTop(String query,
Collection<String> choices,
Applicable func,
int limit,
int cutoff) |
Creates a sorted list of
ExtractedResult which contain the
top @param limit most similar choices |
List<ExtractedResult> |
Extractor.extractWithoutOrder(String query,
Collection<String> choices,
Applicable func) |
Returns the list of choices with their associated scores of similarity in a list
of
ExtractedResult |
| Modifier and Type | Method | Description |
|---|---|---|
int |
ExtractedResult.compareTo(ExtractedResult o) |
Copyright © 2018. All rights reserved.