You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should implement a relative HttpPathto get parts of the Path (file name, directory name, etc), and also iterate over paths. This support should include:
Add offsets field (int[]) for easier splitting the directory (as in other path implementations)
isAbsolute() returning false for this paths
toAbsolutePath() should return an absolute path sited on the root
getFileName
getParent
getNameCount
getName(int)
subpath
iterator - using getName(int)
In addition, this relative Paths should fail for constructing an URI (no relative paths there), with a meaningful error.
The text was updated successfully, but these errors were encountered:
We should implement a relative
HttpPath
to get parts of the Path (file name, directory name, etc), and also iterate over paths. This support should include:int[]
) for easier splitting the directory (as in other path implementations)isAbsolute()
returning false for this pathstoAbsolutePath()
should return an absolute path sited on the rootgetFileName
getParent
getNameCount
getName(int)
subpath
iterator
- usinggetName(int)
In addition, this relative Paths should fail for constructing an URI (no relative paths there), with a meaningful error.
The text was updated successfully, but these errors were encountered: