Class InetAddressSet

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

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

    This is a Set of String patterns that are used to match a Predicate over InetAddress for containment semantics. The patterns that may be set are:

    InetAddress
    A single InetAddress either in hostname or address format. All formats supported by InetAddress are accepted. Not ethat using hostname matches may force domain lookups. eg. "[::1]", "1.2.3.4", "::ffff:127.0.0.1"
    InetAddress/CIDR
    An InetAddress with a integer number of bits to indicate the significant prefix. eg. "192.168.0.0/16" will match from "192.168.0.0" to "192.168.255.255"
    InetAddress-InetAddress
    An inclusive range of InetAddresses. eg. "[a000::1]-[afff::]", "192.168.128.0-192.168.128.255"
    Legacy format
    The legacy format used by IPAddressMap for IPv4 only. eg. "10.10.10-14.0-128"

    This class is designed to work with IncludeExcludeSet

    See Also:
    IncludeExcludeSet
    • Constructor Summary

      Constructors 
      Constructor Description
      InetAddressSet()
      Deprecated.
       
    • Method Summary

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

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

        addAll, clear, contains, containsAll, isEmpty, 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, clear, contains, containsAll, equals, hashCode, isEmpty, removeAll, retainAll, spliterator, toArray, toArray
    • Constructor Detail

      • InetAddressSet

        public InetAddressSet()
        Deprecated.
    • Method Detail

      • 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>
      • 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>
      • test

        public boolean test​(java.net.InetAddress address)
        Deprecated.
        Specified by:
        test in interface java.util.function.Predicate<java.net.InetAddress>