Uses of Class
org.apache.sshd.client.subsystem.sftp.SftpClient.OpenMode
-
Packages that use SftpClient.OpenMode Package Description org.apache.sshd.client.subsystem.sftp org.apache.sshd.client.subsystem.sftp.fs org.apache.sshd.client.subsystem.sftp.impl -
-
Uses of SftpClient.OpenMode in org.apache.sshd.client.subsystem.sftp
Fields in org.apache.sshd.client.subsystem.sftp with type parameters of type SftpClient.OpenMode Modifier and Type Field Description static Set<SftpClient.OpenMode>
SftpClient. DEFAULT_CHANNEL_MODES
Default modes for opening a channel if no specific modes specifiedstatic Set<SftpClient.OpenMode>
SftpRemotePathChannel. READ_MODES
static Set<SftpClient.OpenMode>
SftpRemotePathChannel. WRITE_MODES
Methods in org.apache.sshd.client.subsystem.sftp that return SftpClient.OpenMode Modifier and Type Method Description static SftpClient.OpenMode
SftpClient.OpenMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static SftpClient.OpenMode[]
SftpClient.OpenMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.sshd.client.subsystem.sftp that return types with arguments of type SftpClient.OpenMode Modifier and Type Method Description static Set<SftpClient.OpenMode>
SftpClient.OpenMode. fromOpenOptions(Collection<? extends OpenOption> options)
ConvertsStandardOpenOption
-s intoSftpClient.OpenMode
-sMethods in org.apache.sshd.client.subsystem.sftp with parameters of type SftpClient.OpenMode Modifier and Type Method Description default SftpClient.CloseableHandle
SftpClient. open(String path, SftpClient.OpenMode... options)
Opens a remote file with the specified mode(s)default SftpRemotePathChannel
SftpClient. openRemoteFileChannel(String path, SftpClient.OpenMode... modes)
default InputStream
SftpClient. read(String path, int bufferSize, SftpClient.OpenMode... mode)
default InputStream
SftpClient. read(String path, SftpClient.OpenMode... mode)
default OutputStream
SftpClient. write(String path, int bufferSize, SftpClient.OpenMode... mode)
default OutputStream
SftpClient. write(String path, SftpClient.OpenMode... mode)
Method parameters in org.apache.sshd.client.subsystem.sftp with type arguments of type SftpClient.OpenMode Modifier and Type Method Description SftpClient.CloseableHandle
SftpClient. open(String path, Collection<SftpClient.OpenMode> options)
Opens a remote file with the specified mode(s)default SftpRemotePathChannel
SftpClient. openRemoteFileChannel(String path, Collection<SftpClient.OpenMode> modes)
Opens anSftpRemotePathChannel
on the specified remote pathdefault InputStream
SftpClient. read(String path, int bufferSize, Collection<SftpClient.OpenMode> mode)
Read a remote file's data via an input streamdefault InputStream
SftpClient. read(String path, Collection<SftpClient.OpenMode> mode)
default OutputStream
SftpClient. write(String path, int bufferSize, Collection<SftpClient.OpenMode> mode)
Write to a remote file via an output streamdefault OutputStream
SftpClient. write(String path, Collection<SftpClient.OpenMode> mode)
Constructor parameters in org.apache.sshd.client.subsystem.sftp with type arguments of type SftpClient.OpenMode Constructor Description SftpInputStreamWithChannel(SftpClient client, int bufferSize, String path, Collection<SftpClient.OpenMode> mode)
SftpOutputStreamWithChannel(SftpClient client, int bufferSize, String path, Collection<SftpClient.OpenMode> mode)
SftpRemotePathChannel(String path, SftpClient sftp, boolean closeOnExit, Collection<SftpClient.OpenMode> modes)
-
Uses of SftpClient.OpenMode in org.apache.sshd.client.subsystem.sftp.fs
Constructor parameters in org.apache.sshd.client.subsystem.sftp.fs with type arguments of type SftpClient.OpenMode Constructor Description SftpFileSystemChannel(String remotePath, SftpFileSystem fs, Collection<SftpClient.OpenMode> modes)
SftpFileSystemChannel(SftpPath p, Collection<SftpClient.OpenMode> modes)
-
Uses of SftpClient.OpenMode in org.apache.sshd.client.subsystem.sftp.impl
Method parameters in org.apache.sshd.client.subsystem.sftp.impl with type arguments of type SftpClient.OpenMode Modifier and Type Method Description SftpClient.CloseableHandle
AbstractSftpClient. open(String path, Collection<SftpClient.OpenMode> options)
-