public static enum SearchExtension.MatchAlgorithm extends java.lang.Enum<SearchExtension.MatchAlgorithm>
Enum Constant and Description |
---|
CODE_EXACT |
LUCENE |
PRESENTATION_CONTAINS |
PRESENTATION_EXACT |
PROPERTY_CONTAINS |
PROPERTY_EXACT |
Modifier and Type | Method and Description |
---|---|
static SearchExtension.MatchAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchExtension.MatchAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchExtension.MatchAlgorithm PRESENTATION_EXACT
public static final SearchExtension.MatchAlgorithm PRESENTATION_CONTAINS
public static final SearchExtension.MatchAlgorithm PROPERTY_EXACT
public static final SearchExtension.MatchAlgorithm PROPERTY_CONTAINS
public static final SearchExtension.MatchAlgorithm CODE_EXACT
public static final SearchExtension.MatchAlgorithm LUCENE
public static SearchExtension.MatchAlgorithm[] values()
for (SearchExtension.MatchAlgorithm c : SearchExtension.MatchAlgorithm.values()) System.out.println(c);
public static SearchExtension.MatchAlgorithm valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null