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.Index, Field.Store, Field.TermVector
-
-
Constructor Summary
Constructors Constructor Description FacetField(java.lang.String dim, java.lang.String... path)
Creates the this fromdim
andpath
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Prints a Field for human consumption.static void
verifyLabel(java.lang.String label)
Verifies the label is not null or empty string.-
Methods inherited from class org.apache.lucene.document.Field
binaryValue, boost, fieldType, name, numericValue, readerValue, setBoost, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, translateFieldType
-
-