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