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
-
-
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
-
-
-
-
Field Detail
-
TYPE
public static final FieldType TYPE
Field type used for storing facet values. Actual field type used for indexing is determined inFacetsConfig.build(TaxonomyWriter, Document)
-
dim
public final String dim
Dimension for this field.
-
path
public final String[] path
Path for this field.
-
-