/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; namespace Lucene.Net.Search { /// A DocIdSet contains a set of doc ids. Implementing classes must /// only implement to provide access to the set. /// [Serializable] public abstract class DocIdSet { public class AnonymousClassDocIdSet:DocIdSet { public AnonymousClassDocIdSet() { InitBlock(); } public class AnonymousClassDocIdSetIterator:DocIdSetIterator { public AnonymousClassDocIdSetIterator(AnonymousClassDocIdSet enclosingInstance) { InitBlock(enclosingInstance); } private void InitBlock(AnonymousClassDocIdSet enclosingInstance) { this.enclosingInstance = enclosingInstance; } private AnonymousClassDocIdSet enclosingInstance; public AnonymousClassDocIdSet Enclosing_Instance { get { return enclosingInstance; } } public override int Advance(int target) { return NO_MORE_DOCS; } public override int DocID() { return NO_MORE_DOCS; } public override int NextDoc() { return NO_MORE_DOCS; } } private void InitBlock() { iterator = new AnonymousClassDocIdSetIterator(this); } private DocIdSetIterator iterator; public override DocIdSetIterator Iterator() { return iterator; } public override bool IsCacheable { get { return true; } } } /// An empty instance for easy use, e.g. in Filters that hit no documents. [NonSerialized] public static readonly DocIdSet EMPTY_DOCIDSET; /// Provides a to access the set. /// This implementation can return null or /// EMPTY_DOCIDSET.Iterator() if there /// are no docs that match. /// public abstract DocIdSetIterator Iterator(); /// This method is a hint for , if this DocIdSet /// should be cached without copying it into a BitSet. The default is to return /// false. If you have an own DocIdSet implementation /// that does its iteration very effective and fast without doing disk I/O, /// override this method and return true. /// public virtual bool IsCacheable { get { return false; } } static DocIdSet() { EMPTY_DOCIDSET = new AnonymousClassDocIdSet(); } } }