Uploaded image for project: 'Commons Collections'
  1. Commons Collections
  2. COLLECTIONS-530

Rejecting items on predicate failure without throwing an Exception

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 4.0
    • 4.1
    • List
    • None

    Description

      The PredicatedList class doesn't allow entries that fail the predicate, but throws an Exception on entry.
      The problem I have with this, is that it places the onus of filtering out invalid entries on the caller.
      I typically add items in a loop. The item added is the result of a method call (which returns null if it can't create one).
      This problem is so common for me that I have created my own FilteredList class that simply ignores invalid entries.
      I would like the PredicatedList class to be capable of rejecting items without throwing an exception.
      I don't mind writing the code for this, but there are a great many ways in which this can be done.
      So I was wondering what the interface should look like.

      Separate FilteredList class.
      Works, but seems a little verbose for the purpose

      New factory method: filteredList(List<T> list, Predicate<? super T> predicate)
      Nice and simple, but doesn't allow extension; other ways of dealing with predicate failure.

      New factory method with enum: predicatedList(List<T> list, Predicate<? super T> predicate, PredicateFailEnum action)
      More verbose to use and adds an extra class, but allows more alternative ways to deal with predicate failure.
      One more nice thing is that it might be less confusing,
      because choosing between predicatedList and the above filteredList might not be so obvious.

      New factory method with interface: filteredList(List<T> list, Predicate<? super T> predicate, PredicateFailInterface action)
      Complex, but the most flexible way of dealing with predicate failure.

      Attachments

        1. COLLECTIONS-530.patch
          17 kB
          Thomas Neidhart
        2. COLLECTIONS-530-v0.0.1.alpha.zip
          3 kB
          Erik

        Activity

          People

            Unassigned Unassigned
            koekoekie Erik
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: