本文整理匯總了Java中org.apache.lucene.analysis.tokenattributes.TypeAttribute.setType方法的典型用法代碼示例。如果您正苦於以下問題:Java TypeAttribute.setType方法的具體用法?Java TypeAttribute.setType怎麽用?Java TypeAttribute.setType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.lucene.analysis.tokenattributes.TypeAttribute
的用法示例。
在下文中一共展示了TypeAttribute.setType方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createState
import org.apache.lucene.analysis.tokenattributes.TypeAttribute; //導入方法依賴的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;
}
示例2: setType
import org.apache.lucene.analysis.tokenattributes.TypeAttribute; //導入方法依賴的package包/類
public static void setType(AttributeSource source, String type) {
TypeAttribute attr = source.addAttribute(TypeAttribute.class);
attr.setType(type);
}
示例3: setType
import org.apache.lucene.analysis.tokenattributes.TypeAttribute; //導入方法依賴的package包/類
public static void setType(AttributeSource source, String type) {
TypeAttribute attr = source.addAttribute(TypeAttribute.class);
attr.setType(type);
}