public static enum MultiMatch.Type extends Enum<MultiMatch.Type>
| Enum Constant and Description |
|---|
BEST_FIELDS |
CROSS_FIELDS |
MOST_FIELDS |
PHRASE |
PHRASE_PREFIX |
| Modifier and Type | Method and Description |
|---|---|
static MultiMatch.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiMatch.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiMatch.Type BEST_FIELDS
public static final MultiMatch.Type MOST_FIELDS
public static final MultiMatch.Type CROSS_FIELDS
public static final MultiMatch.Type PHRASE
public static final MultiMatch.Type PHRASE_PREFIX
public static MultiMatch.Type[] values()
for (MultiMatch.Type c : MultiMatch.Type.values()) System.out.println(c);
public static MultiMatch.Type 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 nullCopyright © 2019. All rights reserved.