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;
        }