public static enum SftpClient.CopyMode extends Enum<SftpClient.CopyMode>
| Modifier and Type | Method and Description |
|---|---|
static SftpClient.CopyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SftpClient.CopyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SftpClient.CopyMode Atomic
public static final SftpClient.CopyMode Overwrite
public static SftpClient.CopyMode[] values()
for (SftpClient.CopyMode c : SftpClient.CopyMode.values()) System.out.println(c);
public static SftpClient.CopyMode 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 © 2008–2017 The Apache Software Foundation. All rights reserved.