Package org.apache.lucene.document
Enum Class InvertableType
- All Implemented Interfaces:
Serializable
,Comparable<InvertableType>
,Constable
Describes how an
IndexableField
should be inverted for indexing terms and postings.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe field should be treated as a single value whose binary content is returned byIndexableField.binaryValue()
.The field should be inverted through itsIndexableField.tokenStream(org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.TokenStream)
. -
Method Summary
Modifier and TypeMethodDescriptionstatic InvertableType
Returns the enum constant of this class with the specified name.static InvertableType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BINARY
The field should be treated as a single value whose binary content is returned byIndexableField.binaryValue()
. The term frequency is assumed to be one. If you need to index multiple values, you should pass multipleIndexableField
instances to theIndexWriter
. If the same value is provided multiple times, the term frequency will be equal to the number of times that this value occurred in the same document. -
TOKEN_STREAM
The field should be inverted through itsIndexableField.tokenStream(org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.TokenStream)
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-