Lucene.Net.Index.DocValuesUpdate.DocValuesUpdate C# (CSharp) Method

DocValuesUpdate() protected method

Constructor.
protected DocValuesUpdate ( Lucene.Net.Index.DocValuesFieldUpdates type, Lucene.Net.Index.Term term, string field, object value ) : Lucene.Net.Documents
type Lucene.Net.Index.DocValuesFieldUpdates
term Lucene.Net.Index.Term the which determines the documents that will be updated
field string the to update
value object the updated value
return Lucene.Net.Documents
        protected internal DocValuesUpdate(DocValuesFieldUpdates.Type_e type, Term term, string field, object value)
        {
            this.Type = type;
            this.Term = term;
            this.Field = field;
            this.Value = value;
        }