Searched defs:YES (Results 1 - 4 of 4) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpanPositionCheckQuery.java59 /** Return value if the match should be accepted {@code YES}, rejected {@code NO},
63 protected static enum AcceptStatus { YES, NO, NO_AND_ADVANCE }; enum constant in enum:SpanPositionCheckQuery.AcceptStatus
130 case YES: return true;
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/sampling/
H A DRepeatableSampler.java89 * @param sorted Sorted.YES to sort the sample values in ascending order before returning;
115 if (sorted == Sorted.YES) {
394 YES, enum constant in enum:RepeatableSampler.Sorted
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/document/
H A DField.java47 YES { enum constant in enum:Field.Store
187 YES { enum constant in enum:Field.TermVector
199 * @see #YES
213 * @see #YES
227 * @see #YES
258 return Field.TermVector.YES;
369 * <li>the field is not indexed but termVector is <code>TermVector.YES</code></li>
391 * <li>the field is not indexed but termVector is <code>TermVector.YES</code></li>
525 * @param store Must be Store.YES
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DSegmentInfo.java44 static final int YES = 1; // e.g. have norms; have deletes; field in class:SegmentInfo
57 // (and we must check filesystem); YES or higher if
66 // filesystem must be checked; >= YES says this field
69 private byte isCompoundFile; // NO if it is not; YES if it is; CHECK_DIR if it's
116 this.isCompoundFile = (byte) (isCompoundFile ? YES : NO);
345 // delGen >= YES: this means this segment was written by
351 } else if (delGen >= YES) {
361 delGen = YES;
455 if (normGen[i] >= YES) {
481 normGen[fieldIndex] = YES;
[all...]

Completed in 15 milliseconds