本文整理汇总了Java中org.apache.lucene.index.BinaryDocValues.MISSING属性的典型用法代码示例。如果您正苦于以下问题:Java BinaryDocValues.MISSING属性的具体用法?Java BinaryDocValues.MISSING怎么用?Java BinaryDocValues.MISSING使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.lucene.index.BinaryDocValues
的用法示例。
在下文中一共展示了BinaryDocValues.MISSING属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: compareBottom
@Override
public int compareBottom(int doc) {
currentDocTerms.get(doc, tempBR);
final String val2 = tempBR.bytes == BinaryDocValues.MISSING ? null : tempBR.utf8ToString();
if (bottom == null) {
if (val2 == null) {
return 0;
}
return -1;
} else if (val2 == null) {
return 1;
}
return collator.compare(bottom, val2);
}
示例2: copy
@Override
public void copy(int slot, int doc) {
currentDocTerms.get(doc, tempBR);
if (tempBR.bytes == BinaryDocValues.MISSING) {
values[slot] = null;
} else {
values[slot] = tempBR.utf8ToString();
}
}
示例3: compareDocToValue
@Override
public int compareDocToValue(int doc, String value) {
currentDocTerms.get(doc, tempBR);
final String docValue;
if (tempBR.bytes == BinaryDocValues.MISSING) {
docValue = null;
} else {
docValue = tempBR.utf8ToString();
}
return compareValues(docValue, value);
}
示例4: compareBottom
@Override
public int compareBottom(int doc) {
docTerms.get(doc, tempBR);
if (bottom.bytes == BinaryDocValues.MISSING) {
if (tempBR.bytes == BinaryDocValues.MISSING) {
return 0;
}
return -1;
} else if (tempBR.bytes == BinaryDocValues.MISSING) {
return 1;
}
return bottom.compareTo(tempBR);
}
示例5: getSortedSetDocValues
@Override
public SortedSetDocValues getSortedSetDocValues(String field) throws IOException {
final SortedSetDocValues sortedSetDocValues = in.getSortedSetDocValues(field);
if (sortedSetDocValues == null) {
return null;
}
return new SortedSetDocValues() {
private boolean _access;
@Override
public void setDocument(int docID) {
try {
if (_access = _accessControl.hasAccess(ReadType.SORTED_SET_DOC_VALUE, docID)) {
sortedSetDocValues.setDocument(docID);
}
} catch (IOException e) {
throw new RuntimeException(e);
}
}
@Override
public long nextOrd() {
if (_access) {
return sortedSetDocValues.nextOrd();
}
return NO_MORE_ORDS;
}
@Override
public void lookupOrd(long ord, BytesRef result) {
if (_access) {
sortedSetDocValues.lookupOrd(ord, result);
} else {
result.bytes = BinaryDocValues.MISSING;
result.length = 0;
result.offset = 0;
}
}
@Override
public long getValueCount() {
return sortedSetDocValues.getValueCount();
}
};
}