Class IncludeExclude<ITEM>

java.lang.Object
org.eclipse.jetty.util.IncludeExcludeSet<ITEM,ITEM>
org.eclipse.jetty.util.IncludeExclude<ITEM>
Type Parameters:
ITEM - The type of element
All Implemented Interfaces:
Predicate<ITEM>

public class IncludeExclude<ITEM> extends IncludeExcludeSet<ITEM,ITEM>

Utility class to maintain a set of inclusions and exclusions.

This extension of the IncludeExcludeSet class is used when the type of the set elements is the same as the type of the predicate test.

  • Constructor Details

    • IncludeExclude

      public IncludeExclude()
    • IncludeExclude

      public IncludeExclude(Class<SET> setClass)
    • IncludeExclude

      public IncludeExclude(Set<ITEM> includeSet, Predicate<ITEM> includePredicate, Set<ITEM> excludeSet, Predicate<ITEM> excludePredicate)