Lucene.Net.Search.FuzzyTermsEnum.LevenshteinAutomataAttribute.Equals C# (CSharp) Method

Equals() public method

public Equals ( object other ) : bool
other object
return bool
            public override bool Equals(object other)
            {
                if (this == other)
                {
                    return true;
                }
                if (!(other is LevenshteinAutomataAttribute))
                {
                    return false;
                }
                return automata.Equals(((LevenshteinAutomataAttribute)other).automata);
            }
FuzzyTermsEnum.LevenshteinAutomataAttribute