Package com.browseengine.bobo.analysis.section

Examples of com.browseengine.bobo.analysis.section.IntMetaDataTokenStream


    }
  }
 
  private void addMetaDataField(Document doc, Term term, int[] meta)
  {
    IntMetaDataTokenStream tokenStream = new IntMetaDataTokenStream(term.text());
    tokenStream.setMetaData(meta);
    Field field = new Field(term.field(), tokenStream);
    doc.add(field);
  }
View Full Code Here

TOP

Related Classes of com.browseengine.bobo.analysis.section.IntMetaDataTokenStream

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.