Uses of Class
com.yahoo.path.Path

Packages that use Path
Package
Description
 
  • Uses of Path in com.yahoo.path

    Methods in com.yahoo.path that return Path
    Modifier and Type
    Method
    Description
    Path.append(Path path)
    Appends a path to another path, thereby creating a new path with the provided path appended to this.
    Path.append(String path)
    Append an element to the path.
    static Path
    Path.createRoot()
    Create an empty root path with '/' delimiter.
    static Path
    Path.createRoot(String delimiter)
    Create an empty root path with delimiter.
    static Path
    Path.from(List<String> segments)
    Creates a new path with the given segments.
    static Path
    Path.fromString(String path)
    Creates a path from a string.
    static Path
    Path.fromString(String path, String delimiter)
    Create a path from a string.
    Returns the child path: A path containing all elements of this except the first
    Returns the parent path: A path containing all elements of this except the last
    Path.withLast(String element)
    Returns a new path with the last element replaced by the given element.
    Methods in com.yahoo.path with parameters of type Path
    Modifier and Type
    Method
    Description
    Path.append(Path path)
    Appends a path to another path, thereby creating a new path with the provided path appended to this.
    boolean
    Path.isChildOf(Path parent)
    Returns whether this path is an immediate child of the given path