public static enum SearchStorage.SearchMode extends Enum<SearchStorage.SearchMode>
| Enum Constant and Description |
|---|
FULLMATRIX
Calculate the full dissimilarity matrix.
|
MOSTSIMILAR
Search the most similar for the query.
|
MOSTSIMILARS
Search n of the most similars for the queries.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchStorage.SearchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchStorage.SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchStorage.SearchMode MOSTSIMILAR
public static final SearchStorage.SearchMode MOSTSIMILARS
public static final SearchStorage.SearchMode FULLMATRIX
public static SearchStorage.SearchMode[] values()
for (SearchStorage.SearchMode c : SearchStorage.SearchMode.values()) System.out.println(c);
public static SearchStorage.SearchMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null