/*(non-Javadoc) <see cref="Lucene.Net.Search.Function.FieldCacheSource.cachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource) */ public override bool CachedFieldSourceEquals(FieldCacheSource o) { if (o.GetType() != typeof(IntFieldSource)) { return(false); } IntFieldSource other = (IntFieldSource)o; return(this.parser == null?other.parser == null:this.parser.GetType() == other.parser.GetType()); }
private void InitBlock(int[] arr, IntFieldSource enclosingInstance) { this.arr = arr; this.enclosingInstance = enclosingInstance; }
public AnonymousClassDocValues(int[] arr, IntFieldSource enclosingInstance) { InitBlock(arr, enclosingInstance); }