Class PathSet

  • All Implemented Interfaces:
    java.lang.Iterable<Path>

    public class PathSet
    extends java.lang.Object
    implements java.lang.Iterable<Path>
    Simple helper class for path matching against a set of paths.
    Since:
    1.0.0 (Sling API Bundle 2.11.0)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static PathSet EMPTY_SET
      Empty path set.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      static PathSet fromPathCollection​(java.util.Collection<Path> paths)
      Create a path set from a collection of path objects
      static PathSet fromPaths​(Path... paths)
      Create a path set from a collection of path objects
      static PathSet fromStringCollection​(java.util.Collection<java.lang.String> paths)
      Create a path set from a collection of strings
      static PathSet fromStrings​(java.lang.String... strings)
      Create a path set from a collection of strings
      PathSet getSubset​(java.lang.String path)
      Generate a path set of paths from this set which are in the sub tree of the provided path
      PathSet getSubset​(Path path)
      Generate a path set of paths from this set which are in the sub tree of the provided path
      PathSet getSubset​(PathSet set)
      Generate a path set of paths from this set which are in at least one of the sub tree of the provided path set.
      int hashCode()  
      java.util.Iterator<Path> iterator()
      Return an unmodifiable iterator for the paths.
      Path matches​(java.lang.String otherPath)
      Check whether the provided path is in the sub tree of any of the paths in this set.
      java.lang.String toString()  
      java.util.Set<java.lang.String> toStringSet()
      Create a unmodifiable set of strings
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Field Detail

      • EMPTY_SET

        public static final PathSet EMPTY_SET
        Empty path set.
    • Method Detail

      • fromPathCollection

        public static PathSet fromPathCollection​(java.util.Collection<Path> paths)
        Create a path set from a collection of path objects
        Parameters:
        paths - The collection of path objects
        Returns:
        The path set
      • fromPaths

        public static PathSet fromPaths​(Path... paths)
        Create a path set from a collection of path objects
        Parameters:
        paths - The collection of path objects
        Returns:
        The path set
      • fromStringCollection

        public static PathSet fromStringCollection​(java.util.Collection<java.lang.String> paths)
        Create a path set from a collection of strings
        Parameters:
        paths - The collection of strings
        Returns:
        The path set
      • fromStrings

        public static PathSet fromStrings​(java.lang.String... strings)
        Create a path set from a collection of strings
        Parameters:
        strings - The array of strings
        Returns:
        The path set
      • matches

        public Path matches​(java.lang.String otherPath)
        Check whether the provided path is in the sub tree of any of the paths in this set.
        Parameters:
        otherPath - The path to match
        Returns:
        The path which matches the provided path, null otherwise.
        See Also:
        Path.matches(String)
      • getSubset

        public PathSet getSubset​(java.lang.String path)
        Generate a path set of paths from this set which are in the sub tree of the provided path
        Parameters:
        path - The base path
        Returns:
        Path set, might be empty
      • getSubset

        public PathSet getSubset​(Path path)
        Generate a path set of paths from this set which are in the sub tree of the provided path
        Parameters:
        path - The base path
        Returns:
        Path set, might be empty
        Since:
        1.2.0 (Sling API Bundle 2.15.0)
      • getSubset

        public PathSet getSubset​(PathSet set)
        Generate a path set of paths from this set which are in at least one of the sub tree of the provided path set.
        Parameters:
        set - The base path set
        Returns:
        Path set
      • toStringSet

        public java.util.Set<java.lang.String> toStringSet()
        Create a unmodifiable set of strings
        Returns:
        A set of strings
      • iterator

        public java.util.Iterator<Path> iterator()
        Return an unmodifiable iterator for the paths.
        Specified by:
        iterator in interface java.lang.Iterable<Path>
        Returns:
        An iterator for the paths
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object