public interface FragmentsBuilder
FragmentsBuilder is an interface for fragments (snippets) builder classes.
 A FragmentsBuilder class can be plugged in to
 FastVectorHighlighter.| Modifier and Type | Method and Description | 
|---|---|
| String | createFragment(IndexReader reader,
              int docId,
              String fieldName,
              FieldFragList fieldFragList)create a fragment. | 
| String | createFragment(IndexReader reader,
              int docId,
              String fieldName,
              FieldFragList fieldFragList,
              String[] preTags,
              String[] postTags,
              Encoder encoder)create a fragment. | 
| String[] | createFragments(IndexReader reader,
               int docId,
               String fieldName,
               FieldFragList fieldFragList,
               int maxNumFragments)create multiple fragments. | 
| String[] | createFragments(IndexReader reader,
               int docId,
               String fieldName,
               FieldFragList fieldFragList,
               int maxNumFragments,
               String[] preTags,
               String[] postTags,
               Encoder encoder)create multiple fragments. | 
String createFragment(IndexReader reader, int docId, String fieldName, FieldFragList fieldFragList) throws IOException
reader - IndexReader of the indexdocId - document id to be highlightedfieldName - field of the document to be highlightedfieldFragList - FieldFragList objectIOException - If there is a low-level I/O errorString[] createFragments(IndexReader reader, int docId, String fieldName, FieldFragList fieldFragList, int maxNumFragments) throws IOException
reader - IndexReader of the indexdocId - document id to be highlighterfieldName - field of the document to be highlightedfieldFragList - FieldFragList objectmaxNumFragments - maximum number of fragmentsIOException - If there is a low-level I/O errorString createFragment(IndexReader reader, int docId, String fieldName, FieldFragList fieldFragList, String[] preTags, String[] postTags, Encoder encoder) throws IOException
reader - IndexReader of the indexdocId - document id to be highlightedfieldName - field of the document to be highlightedfieldFragList - FieldFragList objectpreTags - pre-tags to be used to highlight termspostTags - post-tags to be used to highlight termsencoder - an encoder that generates encoded textIOException - If there is a low-level I/O errorString[] createFragments(IndexReader reader, int docId, String fieldName, FieldFragList fieldFragList, int maxNumFragments, String[] preTags, String[] postTags, Encoder encoder) throws IOException
reader - IndexReader of the indexdocId - document id to be highlighterfieldName - field of the document to be highlightedfieldFragList - FieldFragList objectmaxNumFragments - maximum number of fragmentspreTags - pre-tags to be used to highlight termspostTags - post-tags to be used to highlight termsencoder - an encoder that generates encoded textIOException - If there is a low-level I/O errorCopyright © 2000-2017 Apache Software Foundation. All Rights Reserved.