本文整理匯總了Java中org.apache.lucene.document.Document.getFieldable方法的典型用法代碼示例。如果您正苦於以下問題:Java Document.getFieldable方法的具體用法?Java Document.getFieldable怎麽用?Java Document.getFieldable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.lucene.document.Document
的用法示例。
在下文中一共展示了Document.getFieldable方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: isLocal
import org.apache.lucene.document.Document; //導入方法依賴的package包/類
public static boolean isLocal(@NonNull final Document doc) {
Fieldable fld = doc.getFieldable(FIELD_BINARY_NAME);
if (fld == null) {
return false;
} else {
final String binName = fld.stringValue();
switch (binName.charAt(binName.length()-1)) {
case EK_LOCAL_ANNOTATION:
case EK_LOCAL_CLASS:
case EK_LOCAL_ENUM:
case EK_LOCAL_INTERFACE:
return true;
default:
return false;
}
}
}
示例2: getSimpleName
import org.apache.lucene.document.Document; //導入方法依賴的package包/類
public static String getSimpleName(final Document doc) {
final Fieldable field = doc.getFieldable(FIELD_SIMPLE_NAME);
return field == null ?
null :
field.stringValue();
}