public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            if (this == obj)
            {
                return(true);
            }
            if (GetType() != obj.GetType())
            {
                return(false);
            }
            SimpleFilteredSentenceBreakIterator other = (SimpleFilteredSentenceBreakIterator)obj;

            return(@delegate.Equals(other.@delegate) && text.Equals(other.text) && backwardsTrie.Equals(other.backwardsTrie) &&
                   forwardsPartialTrie.Equals(other.forwardsPartialTrie));
        }
        public override object Clone()
        {
            SimpleFilteredSentenceBreakIterator other = (SimpleFilteredSentenceBreakIterator)base.Clone();

            return(other);
        }