Enum UnifiedHighlighter.HighlightFlag
java.lang.Object
java.lang.Enum<UnifiedHighlighter.HighlightFlag>
org.apache.lucene.search.uhighlight.UnifiedHighlighter.HighlightFlag
- All Implemented Interfaces:
Serializable,Comparable<UnifiedHighlighter.HighlightFlag>
- Enclosing class:
UnifiedHighlighter
Flags for controlling highlighting behavior.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPassage relevancy is more important than speed.Internally use theWeight.matches(LeafReaderContext, int)API for highlighting. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static UnifiedHighlighter.HighlightFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PHRASES
- See Also:
-
MULTI_TERM_QUERY
- See Also:
-
PASSAGE_RELEVANCY_OVER_SPEED
Passage relevancy is more important than speed. True by default. -
WEIGHT_MATCHES
Internally use theWeight.matches(LeafReaderContext, int)API for highlighting. It's more accurate to the query, though might not calculate passage relevancy as well. Use of this flag requiresMULTI_TERM_QUERYandPHRASES.PASSAGE_RELEVANCY_OVER_SPEEDwill be ignored. False by default.
-
-
Constructor Details
-
HighlightFlag
private HighlightFlag()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-