public static enum BestKeywordsReducer.BestKeywordValueSelector extends java.lang.Enum<BestKeywordsReducer.BestKeywordValueSelector>
Enum Constant and Description |
---|
BOOSTED_SCORE
Keyword quality is defined by
boosted keyword score |
CONFIDENCE
Keyword quality is defined by maximal confidence
|
FREQUENCY
Keyword quality is defined by frequency
|
Modifier and Type | Method and Description |
---|---|
static BestKeywordsReducer.BestKeywordValueSelector |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BestKeywordsReducer.BestKeywordValueSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BestKeywordsReducer.BestKeywordValueSelector FREQUENCY
public static final BestKeywordsReducer.BestKeywordValueSelector CONFIDENCE
public static final BestKeywordsReducer.BestKeywordValueSelector BOOSTED_SCORE
boosted keyword score
public static BestKeywordsReducer.BestKeywordValueSelector[] values()
for (BestKeywordsReducer.BestKeywordValueSelector c : BestKeywordsReducer.BestKeywordValueSelector.values()) System.out.println(c);
public static BestKeywordsReducer.BestKeywordValueSelector 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