Package org.apache.lucene.facet

Examples of org.apache.lucene.facet.FacetField


    return new IndexAndTaxonomyRevision(publishIndexWriter, publishTaxoWriter);
  }
 
  private Document newDocument(TaxonomyWriter taxoWriter, int id) throws IOException {
    Document doc = new Document();
    doc.add(new FacetField("A", Integer.toString(id, 16)));
    return config.build(publishTaxoWriter, doc);
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.facet.FacetField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.