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 <T> java.util.List<BoundExtractedResult<T>> |
FuzzySearch.extractAll(java.lang.String query,
java.util.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> java.util.List<BoundExtractedResult<T>> |
FuzzySearch.extractAll(java.lang.String query,
java.util.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
|
ExtractedResult |
Extractor.extractOne(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func) |
Find the single best match above a score in a list of choices.
|
<T> BoundExtractedResult<T> |
Extractor.extractOne(java.lang.String query,
java.util.Collection<T> choices,
ToStringFunction<T> toStringFunction,
Applicable func) |
Find the single best match above a score in a list of choices.
|
static ExtractedResult |
FuzzySearch.extractOne(java.lang.String query,
java.util.Collection<java.lang.String> choices,
Applicable func) |
Find the single best match above a score in a list of choices.
|
static <T> BoundExtractedResult<T> |
FuzzySearch.extractOne(java.lang.String query,
java.util.Collection<T> choices,
ToStringFunction<T> toStringFunction,
Applicable func) |
Find the single best match above a score in a list of choices.
|
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
|
static <T> java.util.List<BoundExtractedResult<T>> |
FuzzySearch.extractSorted(java.lang.String query,
java.util.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> java.util.List<BoundExtractedResult<T>> |
FuzzySearch.extractSorted(java.lang.String query,
java.util.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
|
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
|
<T> java.util.List<BoundExtractedResult<T>> |
Extractor.extractTop(java.lang.String query,
java.util.Collection<T> choices,
ToStringFunction<T> toStringFunction,
Applicable func) |
Creates a sorted list of ExtractedResult which contain the
top @param limit most similar choices
|
<T> java.util.List<BoundExtractedResult<T>> |
Extractor.extractTop(java.lang.String query,
java.util.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 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
|
static <T> java.util.List<BoundExtractedResult<T>> |
FuzzySearch.extractTop(java.lang.String query,
java.util.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> java.util.List<BoundExtractedResult<T>> |
FuzzySearch.extractTop(java.lang.String query,
java.util.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
|
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
|
<T> java.util.List<BoundExtractedResult<T>> |
Extractor.extractWithoutOrder(java.lang.String query,
java.util.Collection<T> choices,
ToStringFunction<T> toStringFunction,
Applicable func) |
Returns the list of choices with their associated scores of similarity in a list
of ExtractedResult
|