Class AbstractMatcherEditor<E>

    • Constructor Detail

      • AbstractMatcherEditor

        public AbstractMatcherEditor()
    • Method Detail

      • fireMatchAll

        protected final void fireMatchAll()
        Indicates that the filter matches all.
      • fireChanged

        protected final void fireChanged​(Matcher<E> matcher)
        Indicates that the filter has changed in an indeterminate way.
      • fireConstrained

        protected final void fireConstrained​(Matcher<E> matcher)
        Indicates that the filter has changed to be more restrictive. This should only be called if all currently filtered items will remain filtered.
      • fireRelaxed

        protected final void fireRelaxed​(Matcher<E> matcher)
        Indicates that the filter has changed to be less restrictive. This should only be called if all currently unfiltered items will remain unfiltered.
      • fireMatchNone

        protected final void fireMatchNone()
        Indicates that the filter matches none.
      • isCurrentlyMatchingAll

        protected final boolean isCurrentlyMatchingAll()
        Returns true if the current matcher will match everything.
      • isCurrentlyMatchingNone

        protected final boolean isCurrentlyMatchingNone()
        Returns true if the current matcher will match nothing.