Searched defs:NO (Results 1 - 5 of 5) 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
131 case NO:
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/sampling/
H A DRepeatableSampler.java79 sampleSize, Algorithm.HASHING, Sorted.NO);
90 * Sorted.NO to return them in essentially random order.
399 NO enum constant in enum:RepeatableSampler.Sorted
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/document/
H A DField.java53 NO { enum constant in enum:Field.Store
67 NO { enum constant in enum:Field.Index
148 return Index.NO;
176 NO { enum constant in enum:Field.TermVector
245 return TermVector.NO;
352 this(name, value, store, index, TermVector.NO);
399 if (index == Index.NO && store == Store.NO)
402 if (index == Index.NO && termVector != TermVector.NO)
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/cjk/
H A DCJKBigramFilter.java63 private static final Object NO = new Object(); field in class:CJKBigramFilter
65 // these are set to either their type or NO if we want to pass them thru
104 doHan = (flags & HAN) == 0 ? NO : HAN_TYPE;
105 doHiragana = (flags & HIRAGANA) == 0 ? NO : HIRAGANA_TYPE;
106 doKatakana = (flags & KATAKANA) == 0 ? NO : KATAKANA_TYPE;
107 doHangul = (flags & HANGUL) == 0 ? NO : HANGUL_TYPE;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DSegmentInfo.java43 static final int NO = -1; // e.g. no norms; no deletes; field in class:SegmentInfo
55 private long delGen; // current generation of del file; NO if there
64 // values mean: NO says this field has no separate
69 private byte isCompoundFile; // NO if it is not; YES if it is; CHECK_DIR if it's
115 delGen = NO;
116 this.isCompoundFile = (byte) (isCompoundFile ? YES : NO);
197 if (numNormGen == NO) {
282 normGen[i] = NO;
337 // delGen == NO: this means this segment was written
349 if (delGen == NO) {
[all...]

Completed in 844 milliseconds