Uses of Class
org.apache.sshd.client.scp.ScpClient.Option
-
Packages that use ScpClient.Option Package Description org.apache.sshd.client.scp -
-
Uses of ScpClient.Option in org.apache.sshd.client.scp
Methods in org.apache.sshd.client.scp that return ScpClient.Option Modifier and Type Method Description static ScpClient.Option
ScpClient.Option. valueOf(String name)
Returns the enum constant of this type with the specified name.static ScpClient.Option[]
ScpClient.Option. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.sshd.client.scp that return types with arguments of type ScpClient.Option Modifier and Type Method Description protected Collection<ScpClient.Option>
AbstractScpClient. addTargetIsDirectory(Collection<ScpClient.Option> options)
Methods in org.apache.sshd.client.scp with parameters of type ScpClient.Option Modifier and Type Method Description default void
ScpClient. download(String[] remote, String local, ScpClient.Option... options)
default void
ScpClient. download(String[] remote, Path local, ScpClient.Option... options)
default void
ScpClient. download(String remote, String local, ScpClient.Option... options)
default void
ScpClient. download(String remote, Path local, ScpClient.Option... options)
default void
ScpClient. upload(String[] local, String remote, ScpClient.Option... options)
default void
ScpClient. upload(String local, String remote, ScpClient.Option... options)
default void
ScpClient. upload(Path[] local, String remote, ScpClient.Option... options)
default void
ScpClient. upload(Path local, String remote, ScpClient.Option... options)
Method parameters in org.apache.sshd.client.scp with type arguments of type ScpClient.Option Modifier and Type Method Description protected Collection<ScpClient.Option>
AbstractScpClient. addTargetIsDirectory(Collection<ScpClient.Option> options)
static String
ScpClient. createReceiveCommand(String remote, Collection<ScpClient.Option> options)
static String
ScpClient. createSendCommand(String remote, Collection<ScpClient.Option> options)
void
AbstractScpClient. download(String[] remote, String local, Collection<ScpClient.Option> options)
void
AbstractScpClient. download(String[] remote, Path local, Collection<ScpClient.Option> options)
void
AbstractScpClient. download(String remote, String local, Collection<ScpClient.Option> options)
protected abstract void
AbstractScpClient. download(String remote, FileSystem fs, Path local, Collection<ScpClient.Option> options)
void
AbstractScpClient. download(String remote, Path local, Collection<ScpClient.Option> options)
protected void
DefaultScpClient. download(String remote, FileSystem fs, Path local, Collection<ScpClient.Option> options)
void
ScpClient. download(String[] remote, String local, Collection<ScpClient.Option> options)
void
ScpClient. download(String[] remote, Path local, Collection<ScpClient.Option> options)
void
ScpClient. download(String remote, String local, Collection<ScpClient.Option> options)
void
ScpClient. download(String remote, Path local, Collection<ScpClient.Option> options)
protected abstract <T> void
AbstractScpClient. runUpload(String remote, Collection<ScpClient.Option> options, Collection<T> local, AbstractScpClient.ScpOperationExecutor<T> executor)
protected <T> void
DefaultScpClient. runUpload(String remote, Collection<ScpClient.Option> options, Collection<T> local, AbstractScpClient.ScpOperationExecutor<T> executor)
void
AbstractScpClient. upload(String[] local, String remote, Collection<ScpClient.Option> options)
void
AbstractScpClient. upload(Path[] local, String remote, Collection<ScpClient.Option> options)
void
ScpClient. upload(String[] local, String remote, Collection<ScpClient.Option> options)
default void
ScpClient. upload(String local, String remote, Collection<ScpClient.Option> options)
void
ScpClient. upload(Path[] local, String remote, Collection<ScpClient.Option> options)
default void
ScpClient. upload(Path local, String remote, Collection<ScpClient.Option> options)
-