public static enum Sftp.Mode extends Enum<Sftp.Mode>
Enum Constant and Description |
---|
APPEND
追加模式,如果目标文件已存在,传输的文件将在目标文件后追加。
|
OVERWRITE
完全覆盖模式,这是JSch的默认文件传输模式,即如果目标文件已经存在,传输的文件将完全覆盖目标文件,产生新的文件。
|
RESUME
恢复模式,如果文件已经传输一部分,这时由于网络或其他任何原因导致文件传输中断,如果下一次传输相同的文件,则会从上一次中断的地方续传。
|
Modifier and Type | Method and Description |
---|---|
static Sftp.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sftp.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sftp.Mode OVERWRITE
public static final Sftp.Mode RESUME
public static final Sftp.Mode APPEND
public static Sftp.Mode[] values()
for (Sftp.Mode c : Sftp.Mode.values()) System.out.println(c);
public static Sftp.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.