当前位置: 首页>>代码示例>>Java>>正文


Java PositionIncrementAttribute.setPositionIncrement方法代码示例

本文整理汇总了Java中org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute.setPositionIncrement方法的典型用法代码示例。如果您正苦于以下问题:Java PositionIncrementAttribute.setPositionIncrement方法的具体用法?Java PositionIncrementAttribute.setPositionIncrement怎么用?Java PositionIncrementAttribute.setPositionIncrement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute的用法示例。


在下文中一共展示了PositionIncrementAttribute.setPositionIncrement方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: emit

import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute; //导入方法依赖的package包/类
private void emit( char[] token ) {
System.out.println( "emit: " + new String( token ) );
if (replaceWhitespaceWith != null) {
	token = replaceWhiteSpace( token );
}
CharTermAttribute termAttr = getTermAttribute( );
termAttr.setEmpty( );
termAttr.append( new StringBuilder( ).append( token ) );

OffsetAttribute offAttr = getOffsetAttribute( );
if (offAttr != null && offAttr.endOffset() >= token.length){ 
  int start = offAttr.endOffset() - token.length;
  offAttr.setOffset( start, offAttr.endOffset());
}

PositionIncrementAttribute pia = getPositionIncrementAttribute( );
if (pia != null) {
	pia.setPositionIncrement( ++positionIncr );
}

lastEmitted = token;
 }
 
开发者ID:lucidworks,项目名称:auto-phrase-tokenfilter,代码行数:23,代码来源:AutoPhrasingTokenFilter.java

示例2: emit

import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute; //导入方法依赖的package包/类
private void emit(char[] tokenChars) {
    char[] token = tokenChars;
    if (replaceWhitespaceWith != null) {
        token = replaceWhiteSpace(token);
    }
    CharTermAttribute termAttr = getTermAttribute();
    if (termAttr != null) {
        termAttr.setEmpty();
        termAttr.append(new StringBuilder().append(token));
    }
    OffsetAttribute offAttr = getOffsetAttribute();
    if (offAttr != null && offAttr.endOffset() >= token.length) {
        int start = offAttr.endOffset() - token.length;
        offAttr.setOffset(start, offAttr.endOffset());
    }
    PositionIncrementAttribute pia = getPositionIncrementAttribute();
    if (pia != null) {
        pia.setPositionIncrement(++positionIncr);
    }
    lastEmitted = token;
}
 
开发者ID:jprante,项目名称:elasticsearch-plugin-bundle,代码行数:22,代码来源:AutoPhrasingTokenFilter.java

示例3: createState

import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute; //导入方法依赖的package包/类
private static AttributeSource.State createState(AttributeSource a, Tok state, int tokenEnd) {
  a.clearAttributes();
  CharTermAttribute termAtt = a.addAttribute(CharTermAttribute.class);
  char[] tokChars = state.token.toString().toCharArray();
  termAtt.copyBuffer(tokChars, 0, tokChars.length);
  int tokenStart = tokenEnd - state.token.length();
  for (Entry<String, String> e : state.attr.entrySet()) {
    String k = e.getKey();
    if (k.equals("i")) {
      // position increment
      int incr = Integer.parseInt(e.getValue());
      PositionIncrementAttribute posIncr = a.addAttribute(PositionIncrementAttribute.class);
      posIncr.setPositionIncrement(incr);
    } else if (k.equals("s")) {
      tokenStart = Integer.parseInt(e.getValue());
    } else if (k.equals("e")) {
      tokenEnd = Integer.parseInt(e.getValue());
    } else if (k.equals("y")) {
      TypeAttribute type = a.addAttribute(TypeAttribute.class);
      type.setType(e.getValue());
    } else if (k.equals("f")) {
      FlagsAttribute flags = a.addAttribute(FlagsAttribute.class);
      int f = Integer.parseInt(e.getValue(), 16);
      flags.setFlags(f);
    } else if (k.equals("p")) {
      PayloadAttribute p = a.addAttribute(PayloadAttribute.class);
      byte[] data = hexToBytes(e.getValue());
      if (data != null && data.length > 0) {
        p.setPayload(new BytesRef(data));
      }
    } else {
      // unknown attribute
    }
  }
  // handle offset attr
  OffsetAttribute offset = a.addAttribute(OffsetAttribute.class);
  offset.setOffset(tokenStart, tokenEnd);
  State resState = a.captureState();
  a.clearAttributes();
  return resState;
}
 
开发者ID:europeana,项目名称:search,代码行数:42,代码来源:SimplePreAnalyzedParser.java

示例4: end

import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute; //导入方法依赖的package包/类
/**
 * This method is called by the consumer after the last token has been
 * consumed, after {@link #incrementToken()} returned <code>false</code>
 * (using the new <code>TokenStream</code> API). Streams implementing the old API
 * should upgrade to use this feature.
 * <p/>
 * This method can be used to perform any end-of-stream operations, such as
 * setting the final offset of a stream. The final offset of a stream might
 * differ from the offset of the last token eg in case one or more whitespaces
 * followed after the last token, but a WhitespaceTokenizer was used.
 * <p>
 * Additionally any skipped positions (such as those removed by a stopfilter)
 * can be applied to the position increment, or any adjustment of other
 * attributes where the end-of-stream value may be important.
 * <p>
 * If you override this method, always call {@code super.end()}.
 * 
 * @throws IOException If an I/O error occurs
 */
public void end() throws IOException {
  clearAttributes(); // LUCENE-3849: don't consume dirty atts
  PositionIncrementAttribute posIncAtt = getAttribute(PositionIncrementAttribute.class);
  if (posIncAtt != null) {
    posIncAtt.setPositionIncrement(0);
  }
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:27,代码来源:TokenStream.java


注:本文中的org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute.setPositionIncrement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。