Lucene.Net.Facet.FacetResult.FacetResult C# (CSharp) Method

FacetResult() private method

Private constructor for shared parameters to be called by public constructors.
private FacetResult ( string dim, string path, LabelAndValue labelValues, int childCount ) : Lucene.Net.Support
dim string
path string
labelValues LabelAndValue
childCount int
return Lucene.Net.Support
        private FacetResult(string dim, string[] path, LabelAndValue[] labelValues, int childCount)
        {
            this.Dim = dim;
            this.Path = path;
            this.LabelValues = labelValues;
            this.ChildCount = childCount;
        }

Same methods

FacetResult::FacetResult ( string dim, string path, float value, LabelAndValue labelValues, int childCount ) : Lucene.Net.Support
FacetResult::FacetResult ( string dim, string path, int value, LabelAndValue labelValues, int childCount ) : Lucene.Net.Support