Lucene.Net.Search.FieldCacheImpl.Entry.Entry C# (CSharp) Method

Entry() private method

Creates one of these objects for a custom comparator/parser.
private Entry ( System field, System custom ) : System
field System
custom System
return System
            internal Entry(System.String field, System.Object custom)
            {
                this.field = StringHelper.Intern(field);
                this.custom = custom;
            }
            
FieldCacheImpl.Entry