Package org.apache.sshd.common.file.util
Class MockPath
- java.lang.Object
-
- org.apache.sshd.common.file.util.MockPath
-
- All Implemented Interfaces:
java.lang.Comparable<java.nio.file.Path>
,java.lang.Iterable<java.nio.file.Path>
,java.nio.file.Path
,java.nio.file.Watchable
public class MockPath extends java.lang.Object implements java.nio.file.Path
-
-
Constructor Summary
Constructors Constructor Description MockPath(java.lang.String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(java.nio.file.Path other)
boolean
endsWith(java.lang.String other)
boolean
endsWith(java.nio.file.Path other)
java.nio.file.Path
getFileName()
java.nio.file.FileSystem
getFileSystem()
java.nio.file.Path
getName(int index)
int
getNameCount()
java.nio.file.Path
getParent()
java.nio.file.Path
getRoot()
boolean
isAbsolute()
java.util.Iterator<java.nio.file.Path>
iterator()
java.nio.file.Path
normalize()
java.nio.file.WatchKey
register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>... events)
java.nio.file.WatchKey
register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>[] events, java.nio.file.WatchEvent.Modifier... modifiers)
java.nio.file.Path
relativize(java.nio.file.Path other)
java.nio.file.Path
resolve(java.lang.String other)
java.nio.file.Path
resolve(java.nio.file.Path other)
java.nio.file.Path
resolveSibling(java.lang.String other)
java.nio.file.Path
resolveSibling(java.nio.file.Path other)
boolean
startsWith(java.lang.String other)
boolean
startsWith(java.nio.file.Path other)
java.nio.file.Path
subpath(int beginIndex, int endIndex)
java.nio.file.Path
toAbsolutePath()
java.io.File
toFile()
java.nio.file.Path
toRealPath(java.nio.file.LinkOption... options)
java.lang.String
toString()
java.net.URI
toUri()
-
-
-
Method Detail
-
getFileSystem
public java.nio.file.FileSystem getFileSystem()
- Specified by:
getFileSystem
in interfacejava.nio.file.Path
-
isAbsolute
public boolean isAbsolute()
- Specified by:
isAbsolute
in interfacejava.nio.file.Path
-
getRoot
public java.nio.file.Path getRoot()
- Specified by:
getRoot
in interfacejava.nio.file.Path
-
getFileName
public java.nio.file.Path getFileName()
- Specified by:
getFileName
in interfacejava.nio.file.Path
-
getParent
public java.nio.file.Path getParent()
- Specified by:
getParent
in interfacejava.nio.file.Path
-
getNameCount
public int getNameCount()
- Specified by:
getNameCount
in interfacejava.nio.file.Path
-
getName
public java.nio.file.Path getName(int index)
- Specified by:
getName
in interfacejava.nio.file.Path
-
subpath
public java.nio.file.Path subpath(int beginIndex, int endIndex)
- Specified by:
subpath
in interfacejava.nio.file.Path
-
startsWith
public boolean startsWith(java.nio.file.Path other)
- Specified by:
startsWith
in interfacejava.nio.file.Path
-
startsWith
public boolean startsWith(java.lang.String other)
- Specified by:
startsWith
in interfacejava.nio.file.Path
-
endsWith
public boolean endsWith(java.nio.file.Path other)
- Specified by:
endsWith
in interfacejava.nio.file.Path
-
endsWith
public boolean endsWith(java.lang.String other)
- Specified by:
endsWith
in interfacejava.nio.file.Path
-
normalize
public java.nio.file.Path normalize()
- Specified by:
normalize
in interfacejava.nio.file.Path
-
resolve
public java.nio.file.Path resolve(java.nio.file.Path other)
- Specified by:
resolve
in interfacejava.nio.file.Path
-
resolve
public java.nio.file.Path resolve(java.lang.String other)
- Specified by:
resolve
in interfacejava.nio.file.Path
-
resolveSibling
public java.nio.file.Path resolveSibling(java.nio.file.Path other)
- Specified by:
resolveSibling
in interfacejava.nio.file.Path
-
resolveSibling
public java.nio.file.Path resolveSibling(java.lang.String other)
- Specified by:
resolveSibling
in interfacejava.nio.file.Path
-
relativize
public java.nio.file.Path relativize(java.nio.file.Path other)
- Specified by:
relativize
in interfacejava.nio.file.Path
-
toUri
public java.net.URI toUri()
- Specified by:
toUri
in interfacejava.nio.file.Path
-
toAbsolutePath
public java.nio.file.Path toAbsolutePath()
- Specified by:
toAbsolutePath
in interfacejava.nio.file.Path
-
toRealPath
public java.nio.file.Path toRealPath(java.nio.file.LinkOption... options) throws java.io.IOException
- Specified by:
toRealPath
in interfacejava.nio.file.Path
- Throws:
java.io.IOException
-
toFile
public java.io.File toFile()
- Specified by:
toFile
in interfacejava.nio.file.Path
-
register
public java.nio.file.WatchKey register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>... events) throws java.io.IOException
- Specified by:
register
in interfacejava.nio.file.Path
- Specified by:
register
in interfacejava.nio.file.Watchable
- Throws:
java.io.IOException
-
register
public java.nio.file.WatchKey register(java.nio.file.WatchService watcher, java.nio.file.WatchEvent.Kind<?>[] events, java.nio.file.WatchEvent.Modifier... modifiers) throws java.io.IOException
- Specified by:
register
in interfacejava.nio.file.Path
- Specified by:
register
in interfacejava.nio.file.Watchable
- Throws:
java.io.IOException
-
iterator
public java.util.Iterator<java.nio.file.Path> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<java.nio.file.Path>
- Specified by:
iterator
in interfacejava.nio.file.Path
-
compareTo
public int compareTo(java.nio.file.Path other)
- Specified by:
compareTo
in interfacejava.lang.Comparable<java.nio.file.Path>
- Specified by:
compareTo
in interfacejava.nio.file.Path
-
toString
public java.lang.String toString()
- Specified by:
toString
in interfacejava.nio.file.Path
- Overrides:
toString
in classjava.lang.Object
-
-