Lucene.Net.Facet.FacetsCollector.AcceptsDocsOutOfOrder C# (CSharp) Méthode

AcceptsDocsOutOfOrder() public final méthode

public final AcceptsDocsOutOfOrder ( ) : bool
Résultat 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;
        }