Package org.apache.lucene.facet
Class FacetField
- java.lang.Object
-
- org.apache.lucene.document.Field
-
- org.apache.lucene.facet.FacetField
-
- All Implemented Interfaces:
IndexableField
public class FacetField extends Field
Add an instance of this to yourDocument
for every facet label.NOTE: you must call
FacetsConfig.build(Document)
before you add the document to IndexWriter.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.document.Field
Field.Store
-
-
Field Summary
Fields Modifier and Type Field Description String
dim
Dimension for this field.String[]
path
Path for this field.static FieldType
TYPE
Field type used for storing facet values: docs, freqs, and positions.-
Fields inherited from class org.apache.lucene.document.Field
fieldsData, name, tokenStream, type
-
-
Constructor Summary
Constructors Constructor Description FacetField(String dim, String... path)
Creates the this fromdim
andpath
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static void
verifyLabel(String label)
Verifies the label is not null or empty string.-
Methods inherited from class org.apache.lucene.document.Field
binaryValue, fieldType, getCharSequenceValue, name, numericValue, readerValue, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue
-
-