Inheritance: Lucene.Net.Search.Function.FieldCacheSource
Example #1
0
        /*(non-Javadoc) @see Lucene.Net.Search.Function.FieldCacheSource#cachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource) */
        public override bool CachedFieldSourceEquals(FieldCacheSource o)
        {
            if (o.GetType() != typeof(ShortFieldSource))
            {
                return(false);
            }
            ShortFieldSource other = (ShortFieldSource)o;

            return(this.parser == null?other.parser == null:this.parser.GetType() == other.parser.GetType());
        }
Example #2
0
 private void InitBlock(short[] arr, ShortFieldSource enclosingInstance)
 {
     this.arr = arr;
     this.enclosingInstance = enclosingInstance;
 }
Example #3
0
 public AnonymousClassDocValues(short[] arr, ShortFieldSource enclosingInstance)
 {
     InitBlock(arr, enclosingInstance);
 }
Example #4
0
 private void  InitBlock(short[] arr, ShortFieldSource enclosingInstance)
 {
     this.arr = arr;
     this.enclosingInstance = enclosingInstance;
 }
Example #5
0
 public AnonymousClassDocValues(short[] arr, ShortFieldSource enclosingInstance)
 {
     InitBlock(arr, enclosingInstance);
 }