/// <summary>Internal constructor.</summary> private AllRingsFinder(Threshold threshold) { this.threshold = threshold; }
/// <summary> /// Create an <see cref="AllRingsFinder"/> instance using the given threshold. /// </summary> /// <example> /// <include file='IncludeExamples.xml' path='Comments/Codes[@id="NCDK.RingSearches.AllRingsFinder_Example.cs+UsingThreshold"]/*' /> /// </example> /// <param name="threshold">the threshold value</param> /// <returns>instance with the set threshold</returns> public static AllRingsFinder UsingThreshold(Threshold threshold) { return(new AllRingsFinder(threshold)); }