/*(non-Javadoc) @see Mono.Lucene.Net.Search.Function.FieldCacheSource#cachedFieldSourceEquals(Mono.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()); }
private void InitBlock(short[] arr, ShortFieldSource enclosingInstance) { this.arr = arr; this.enclosingInstance = enclosingInstance; }
public AnonymousClassDocValues(short[] arr, ShortFieldSource enclosingInstance) { InitBlock(arr, enclosingInstance); }