| Package | Description |
|---|---|
| me.xdrop.fuzzywuzzy | |
| me.xdrop.fuzzywuzzy.algorithms | |
| me.xdrop.fuzzywuzzy.ratios |
| Modifier and Type | Interface | Description |
|---|---|---|
interface |
Ratio |
Interface for the different ratios
|
| Modifier and Type | Method | Description |
|---|---|---|
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 <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 |
ExtractedResult |
Extractor.extractOne(String query,
Collection<String> choices,
Applicable func) |
Find the single best match above a score in a list of choices.
|
<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 ExtractedResult |
FuzzySearch.extractOne(String query,
Collection<String> choices,
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,
Applicable func) |
Find the single best match above a score in a list of choices.
|
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 |
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 |
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 |
<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 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 |
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 |
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 |
<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 | Class | Description |
|---|---|---|
class |
BasicAlgorithm |
|
class |
RatioAlgorithm |
|
class |
TokenSet |
|
class |
TokenSort |
|
class |
WeightedRatio |
| Modifier and Type | Class | Description |
|---|---|---|
class |
PartialRatio |
Partial ratio of similarity
|
class |
SimpleRatio |
Copyright © 2018. All rights reserved.