當前位置: 首頁>>代碼示例>>Java>>正文


Java CharTermAttribute.copyBuffer方法代碼示例

本文整理匯總了Java中org.apache.lucene.analysis.tokenattributes.CharTermAttribute.copyBuffer方法的典型用法代碼示例。如果您正苦於以下問題:Java CharTermAttribute.copyBuffer方法的具體用法?Java CharTermAttribute.copyBuffer怎麽用?Java CharTermAttribute.copyBuffer使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.lucene.analysis.tokenattributes.CharTermAttribute的用法示例。


在下文中一共展示了CharTermAttribute.copyBuffer方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getText

import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; //導入方法依賴的package包/類
/**
 * Fills Lucene token with the current token text.
 */
final void getText(CharTermAttribute t) {
  t.copyBuffer(zzBuffer, zzStartRead, zzMarkedPos-zzStartRead);
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:7,代碼來源:WikipediaTokenizerImpl.java

示例2: getText

import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; //導入方法依賴的package包/類
/**
 * Fills CharTermAttribute with the current token text.
 */
public final void getText(CharTermAttribute t) {
  t.copyBuffer(zzBuffer, zzStartRead, zzMarkedPos-zzStartRead);
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:7,代碼來源:UAX29URLEmailTokenizerImpl36.java

示例3: getText

import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; //導入方法依賴的package包/類
/**
 * Fills CharTermAttribute with the current token text.
 */
@Override
public final void getText(CharTermAttribute t) {
  t.copyBuffer(zzBuffer, zzStartRead, zzMarkedPos-zzStartRead);
}
 
開發者ID:gncloud,項目名稱:fastcatsearch3,代碼行數:8,代碼來源:StandardTokenizerImpl.java

示例4: createState

import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; //導入方法依賴的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


注:本文中的org.apache.lucene.analysis.tokenattributes.CharTermAttribute.copyBuffer方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。