Class RegexSet

  • All Implemented Interfaces:
    java.lang.Iterable<java.lang.String>, java.util.Collection<java.lang.String>, java.util.function.Predicate<java.lang.String>, java.util.Set<java.lang.String>

    @Deprecated(since="2021-05-27")
    public class RegexSet
    extends java.util.AbstractSet<java.lang.String>
    implements java.util.function.Predicate<java.lang.String>
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    A Set of Regular expressions strings.

    Provides the efficient matches(String) method to check for a match against all the combined Regex's

    • Constructor Summary

      Constructors 
      Constructor Description
      RegexSet()
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean add​(java.lang.String pattern)
      Deprecated.
       
      void clear()
      Deprecated.
       
      boolean isEmpty()
      Deprecated.
       
      java.util.Iterator<java.lang.String> iterator()
      Deprecated.
       
      boolean matches​(java.lang.String s)
      Deprecated.
       
      boolean remove​(java.lang.Object pattern)
      Deprecated.
       
      int size()
      Deprecated.
       
      boolean test​(java.lang.String s)
      Deprecated.
       
      • Methods inherited from class java.util.AbstractSet

        equals, hashCode, removeAll
      • Methods inherited from class java.util.AbstractCollection

        addAll, contains, containsAll, retainAll, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
      • Methods inherited from interface java.util.Set

        addAll, contains, containsAll, retainAll, spliterator, toArray, toArray
    • Constructor Detail

      • RegexSet

        public RegexSet()
        Deprecated.
    • Method Detail

      • iterator

        public java.util.Iterator<java.lang.String> iterator()
        Deprecated.
        Specified by:
        iterator in interface java.util.Collection<java.lang.String>
        Specified by:
        iterator in interface java.lang.Iterable<java.lang.String>
        Specified by:
        iterator in interface java.util.Set<java.lang.String>
        Specified by:
        iterator in class java.util.AbstractCollection<java.lang.String>
      • size

        public int size()
        Deprecated.
        Specified by:
        size in interface java.util.Collection<java.lang.String>
        Specified by:
        size in interface java.util.Set<java.lang.String>
        Specified by:
        size in class java.util.AbstractCollection<java.lang.String>
      • add

        public boolean add​(java.lang.String pattern)
        Deprecated.
        Specified by:
        add in interface java.util.Collection<java.lang.String>
        Specified by:
        add in interface java.util.Set<java.lang.String>
        Overrides:
        add in class java.util.AbstractCollection<java.lang.String>
      • remove

        public boolean remove​(java.lang.Object pattern)
        Deprecated.
        Specified by:
        remove in interface java.util.Collection<java.lang.String>
        Specified by:
        remove in interface java.util.Set<java.lang.String>
        Overrides:
        remove in class java.util.AbstractCollection<java.lang.String>
      • isEmpty

        public boolean isEmpty()
        Deprecated.
        Specified by:
        isEmpty in interface java.util.Collection<java.lang.String>
        Specified by:
        isEmpty in interface java.util.Set<java.lang.String>
        Overrides:
        isEmpty in class java.util.AbstractCollection<java.lang.String>
      • clear

        public void clear()
        Deprecated.
        Specified by:
        clear in interface java.util.Collection<java.lang.String>
        Specified by:
        clear in interface java.util.Set<java.lang.String>
        Overrides:
        clear in class java.util.AbstractCollection<java.lang.String>
      • test

        public boolean test​(java.lang.String s)
        Deprecated.
        Specified by:
        test in interface java.util.function.Predicate<java.lang.String>
      • matches

        public boolean matches​(java.lang.String s)
        Deprecated.