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