org.kie.commons.java.nio.fs.jgit
public class JGitFSPath extends Object implements org.kie.commons.java.nio.file.Path
Constructor and Description |
---|
JGitFSPath(JGitFileSystem fs) |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(org.kie.commons.java.nio.file.Path path) |
boolean |
endsWith(org.kie.commons.java.nio.file.Path other) |
boolean |
endsWith(String other) |
org.kie.commons.java.nio.file.Path |
getFileName() |
org.kie.commons.java.nio.file.FileSystem |
getFileSystem() |
org.kie.commons.java.nio.file.Path |
getName(int index) |
int |
getNameCount() |
org.kie.commons.java.nio.file.Path |
getParent() |
org.kie.commons.java.nio.file.Path |
getRoot() |
boolean |
isAbsolute() |
Iterator<org.kie.commons.java.nio.file.Path> |
iterator() |
org.kie.commons.java.nio.file.Path |
normalize() |
org.kie.commons.java.nio.file.WatchKey |
register(org.kie.commons.java.nio.file.WatchService watcher,
org.kie.commons.java.nio.file.WatchEvent.Kind<?>... events) |
org.kie.commons.java.nio.file.WatchKey |
register(org.kie.commons.java.nio.file.WatchService watcher,
org.kie.commons.java.nio.file.WatchEvent.Kind<?>[] events,
org.kie.commons.java.nio.file.WatchEvent.Modifier... modifiers) |
org.kie.commons.java.nio.file.Path |
relativize(org.kie.commons.java.nio.file.Path other) |
org.kie.commons.java.nio.file.Path |
resolve(org.kie.commons.java.nio.file.Path other) |
org.kie.commons.java.nio.file.Path |
resolve(String other) |
org.kie.commons.java.nio.file.Path |
resolveSibling(org.kie.commons.java.nio.file.Path other) |
org.kie.commons.java.nio.file.Path |
resolveSibling(String other) |
boolean |
startsWith(org.kie.commons.java.nio.file.Path other) |
boolean |
startsWith(String other) |
org.kie.commons.java.nio.file.Path |
subpath(int beginIndex,
int endIndex) |
org.kie.commons.java.nio.file.Path |
toAbsolutePath() |
File |
toFile() |
org.kie.commons.java.nio.file.Path |
toRealPath(org.kie.commons.java.nio.file.LinkOption... options) |
URI |
toUri() |
public JGitFSPath(JGitFileSystem fs)
public org.kie.commons.java.nio.file.FileSystem getFileSystem()
getFileSystem
in interface org.kie.commons.java.nio.file.Path
public boolean isAbsolute()
isAbsolute
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path getRoot()
getRoot
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path getFileName()
getFileName
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path getParent()
getParent
in interface org.kie.commons.java.nio.file.Path
public int getNameCount()
getNameCount
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path getName(int index) throws IllegalArgumentException
getName
in interface org.kie.commons.java.nio.file.Path
IllegalArgumentException
public org.kie.commons.java.nio.file.Path subpath(int beginIndex, int endIndex) throws IllegalArgumentException
subpath
in interface org.kie.commons.java.nio.file.Path
IllegalArgumentException
public boolean startsWith(org.kie.commons.java.nio.file.Path other)
startsWith
in interface org.kie.commons.java.nio.file.Path
public boolean startsWith(String other) throws org.kie.commons.java.nio.file.InvalidPathException
startsWith
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.file.InvalidPathException
public boolean endsWith(org.kie.commons.java.nio.file.Path other)
endsWith
in interface org.kie.commons.java.nio.file.Path
public boolean endsWith(String other) throws org.kie.commons.java.nio.file.InvalidPathException
endsWith
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.file.InvalidPathException
public org.kie.commons.java.nio.file.Path normalize()
normalize
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path resolve(org.kie.commons.java.nio.file.Path other)
resolve
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path resolve(String other) throws org.kie.commons.java.nio.file.InvalidPathException
resolve
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.file.InvalidPathException
public org.kie.commons.java.nio.file.Path resolveSibling(org.kie.commons.java.nio.file.Path other)
resolveSibling
in interface org.kie.commons.java.nio.file.Path
public org.kie.commons.java.nio.file.Path resolveSibling(String other) throws org.kie.commons.java.nio.file.InvalidPathException
resolveSibling
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.file.InvalidPathException
public org.kie.commons.java.nio.file.Path relativize(org.kie.commons.java.nio.file.Path other) throws IllegalArgumentException
relativize
in interface org.kie.commons.java.nio.file.Path
IllegalArgumentException
public URI toUri() throws org.kie.commons.java.nio.IOException, SecurityException
toUri
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.IOException
SecurityException
public org.kie.commons.java.nio.file.Path toAbsolutePath() throws org.kie.commons.java.nio.IOException, SecurityException
toAbsolutePath
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.IOException
SecurityException
public org.kie.commons.java.nio.file.Path toRealPath(org.kie.commons.java.nio.file.LinkOption... options) throws org.kie.commons.java.nio.IOException, SecurityException
toRealPath
in interface org.kie.commons.java.nio.file.Path
org.kie.commons.java.nio.IOException
SecurityException
public File toFile() throws UnsupportedOperationException
toFile
in interface org.kie.commons.java.nio.file.Path
UnsupportedOperationException
public int compareTo(org.kie.commons.java.nio.file.Path path)
compareTo
in interface Comparable<org.kie.commons.java.nio.file.Path>
public Iterator<org.kie.commons.java.nio.file.Path> iterator()
public org.kie.commons.java.nio.file.WatchKey register(org.kie.commons.java.nio.file.WatchService watcher, org.kie.commons.java.nio.file.WatchEvent.Kind<?>[] events, org.kie.commons.java.nio.file.WatchEvent.Modifier... modifiers) throws UnsupportedOperationException, IllegalArgumentException, org.kie.commons.java.nio.file.ClosedWatchServiceException, org.kie.commons.java.nio.IOException, SecurityException
register
in interface org.kie.commons.java.nio.file.Watchable
UnsupportedOperationException
IllegalArgumentException
org.kie.commons.java.nio.file.ClosedWatchServiceException
org.kie.commons.java.nio.IOException
SecurityException
public org.kie.commons.java.nio.file.WatchKey register(org.kie.commons.java.nio.file.WatchService watcher, org.kie.commons.java.nio.file.WatchEvent.Kind<?>... events) throws UnsupportedOperationException, IllegalArgumentException, org.kie.commons.java.nio.file.ClosedWatchServiceException, org.kie.commons.java.nio.IOException, SecurityException
register
in interface org.kie.commons.java.nio.file.Watchable
UnsupportedOperationException
IllegalArgumentException
org.kie.commons.java.nio.file.ClosedWatchServiceException
org.kie.commons.java.nio.IOException
SecurityException
Copyright © 2001-2013 JBoss by Red Hat. All Rights Reserved.