Lucene.Net.Facet.FacetsCollector.AcceptsDocsOutOfOrder C# (CSharp) Метод

AcceptsDocsOutOfOrder() публичный закрытый Метод

public final AcceptsDocsOutOfOrder ( ) : bool
Результат bool
        public override sealed bool AcceptsDocsOutOfOrder()
        {
            // If we are keeping scores then we require in-order
            // because we append each score to the float[] and
            // expect that they correlate in order to the hits:
            return keepScores == false;
        }