Uses of Class
org.apache.sshd.sftp.client.SftpClient.OpenMode
-
Packages that use SftpClient.OpenMode Package Description org.apache.sshd.sftp.client org.apache.sshd.sftp.client.fs org.apache.sshd.sftp.client.impl -
-
Uses of SftpClient.OpenMode in org.apache.sshd.sftp.client
Fields in org.apache.sshd.sftp.client with type parameters of type SftpClient.OpenMode Modifier and Type Field Description static java.util.Set<SftpClient.OpenMode>SftpClient. DEFAULT_CHANNEL_MODESDefault modes for opening a channel if no specific modes specifiedMethods in org.apache.sshd.sftp.client that return SftpClient.OpenMode Modifier and Type Method Description static SftpClient.OpenModeSftpClient.OpenMode. valueOf(java.lang.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.sftp.client that return types with arguments of type SftpClient.OpenMode Modifier and Type Method Description static java.util.Set<SftpClient.OpenMode>SftpClient.OpenMode. fromOpenOptions(java.util.Collection<? extends java.nio.file.OpenOption> options)ConvertsStandardOpenOption-s intoSftpClient.OpenMode-sMethods in org.apache.sshd.sftp.client with parameters of type SftpClient.OpenMode Modifier and Type Method Description default SftpClient.CloseableHandleSftpClient. open(java.lang.String path, SftpClient.OpenMode... options)Opens a remote file with the specified mode(s)default java.nio.channels.FileChannelSftpClient. openRemoteFileChannel(java.lang.String path, SftpClient.OpenMode... modes)default voidSftpClient. put(java.io.InputStream stream, int bufferSize, java.lang.String path, SftpClient.OpenMode... modes)default voidSftpClient. put(java.io.InputStream stream, java.lang.String path, SftpClient.OpenMode... modes)default voidSftpClient. put(java.nio.file.Path localFile, int bufferSize, java.lang.String path, SftpClient.OpenMode... modes)default voidSftpClient. put(java.nio.file.Path localFile, java.lang.String path, SftpClient.OpenMode... modes)default java.io.InputStreamSftpClient. read(java.lang.String path, int bufferSize, SftpClient.OpenMode... mode)default java.io.InputStreamSftpClient. read(java.lang.String path, SftpClient.OpenMode... mode)default java.io.OutputStreamSftpClient. write(java.lang.String path, int bufferSize, SftpClient.OpenMode... mode)default java.io.OutputStreamSftpClient. write(java.lang.String path, SftpClient.OpenMode... mode)Method parameters in org.apache.sshd.sftp.client with type arguments of type SftpClient.OpenMode Modifier and Type Method Description SftpClient.CloseableHandleSftpClient. open(java.lang.String path, java.util.Collection<SftpClient.OpenMode> options)Opens a remote file with the specified mode(s)java.nio.channels.FileChannelSftpClient. openRemoteFileChannel(java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)Opens anFileChannelon the specified remote pathvoidSftpClient. put(java.io.InputStream stream, int bufferSize, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)Write data from anInputStreamto a remote file.default voidSftpClient. put(java.io.InputStream stream, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)default voidSftpClient. put(java.nio.file.Path localFile, int bufferSize, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)Uploads a local file to a remote file.default voidSftpClient. put(java.nio.file.Path localFile, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)java.io.InputStreamSftpClient. read(java.lang.String path, int bufferSize, java.util.Collection<SftpClient.OpenMode> mode)Read a remote file's data via an input streamdefault java.io.InputStreamSftpClient. read(java.lang.String path, java.util.Collection<SftpClient.OpenMode> mode)java.io.OutputStreamSftpClient. write(java.lang.String path, int bufferSize, java.util.Collection<SftpClient.OpenMode> mode)Write to a remote file via an output streamdefault java.io.OutputStreamSftpClient. write(java.lang.String path, java.util.Collection<SftpClient.OpenMode> mode) -
Uses of SftpClient.OpenMode in org.apache.sshd.sftp.client.fs
Methods in org.apache.sshd.sftp.client.fs with parameters of type SftpClient.OpenMode Modifier and Type Method Description voidSftpFileSystem.Wrapper. put(java.io.InputStream stream, java.lang.String path, SftpClient.OpenMode... modes)voidSftpFileSystem.Wrapper. put(java.nio.file.Path localFile, java.lang.String path, SftpClient.OpenMode... modes)java.io.InputStreamSftpFileSystem.Wrapper. read(java.lang.String path, SftpClient.OpenMode... mode)java.io.OutputStreamSftpFileSystem.Wrapper. write(java.lang.String path, SftpClient.OpenMode... mode)Method parameters in org.apache.sshd.sftp.client.fs with type arguments of type SftpClient.OpenMode Modifier and Type Method Description SftpClient.CloseableHandleSftpFileSystem.Wrapper. open(java.lang.String path, java.util.Collection<SftpClient.OpenMode> options)voidSftpFileSystem.Wrapper. put(java.io.InputStream stream, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)voidSftpFileSystem.Wrapper. put(java.nio.file.Path localFile, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)java.io.InputStreamSftpFileSystem.Wrapper. read(java.lang.String path, java.util.Collection<SftpClient.OpenMode> mode)java.io.OutputStreamSftpFileSystem.Wrapper. write(java.lang.String path, java.util.Collection<SftpClient.OpenMode> mode) -
Uses of SftpClient.OpenMode in org.apache.sshd.sftp.client.impl
Fields in org.apache.sshd.sftp.client.impl with type parameters of type SftpClient.OpenMode Modifier and Type Field Description protected java.util.Collection<SftpClient.OpenMode>SftpRemotePathChannel. modesstatic java.util.Set<SftpClient.OpenMode>SftpRemotePathChannel. READ_MODESstatic java.util.Set<SftpClient.OpenMode>SftpRemotePathChannel. WRITE_MODESMethod parameters in org.apache.sshd.sftp.client.impl with type arguments of type SftpClient.OpenMode Modifier and Type Method Description SftpClient.CloseableHandleAbstractSftpClient. open(java.lang.String path, java.util.Collection<SftpClient.OpenMode> options)java.nio.channels.FileChannelAbstractSftpClient. openRemoteFileChannel(java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)voidAbstractSftpClient. put(java.io.InputStream stream, int bufferSize, java.lang.String path, java.util.Collection<SftpClient.OpenMode> modes)java.io.InputStreamAbstractSftpClient. read(java.lang.String path, int bufferSize, java.util.Collection<SftpClient.OpenMode> mode)SftpOutputStreamAsyncAbstractSftpClient. write(java.lang.String path, int bufferSize, java.util.Collection<SftpClient.OpenMode> mode)Constructor parameters in org.apache.sshd.sftp.client.impl with type arguments of type SftpClient.OpenMode Constructor Description SftpInputStreamAsync(AbstractSftpClient client, int bufferSize, java.lang.String path, java.util.Collection<SftpClient.OpenMode> mode)SftpOutputStreamAsync(AbstractSftpClient client, int bufferSize, java.lang.String path, java.util.Collection<SftpClient.OpenMode> mode)Creates a new stream to write data to a remote file.SftpRemotePathChannel(java.lang.String path, SftpClient sftp, boolean closeOnExit, java.util.Collection<SftpClient.OpenMode> modes)
-