public static enum FTPResult.FTPResultStatus extends Enum<FTPResult.FTPResultStatus>
Enum Constant and Description |
---|
CANT_MOVE |
CANT_READ |
CANT_WRITE |
NOT_YET_STARTED |
RETRY |
SUCCESS |
Modifier and Type | Method and Description |
---|---|
static FTPResult.FTPResultStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTPResult.FTPResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTPResult.FTPResultStatus SUCCESS
public static final FTPResult.FTPResultStatus CANT_MOVE
public static final FTPResult.FTPResultStatus CANT_READ
public static final FTPResult.FTPResultStatus CANT_WRITE
public static final FTPResult.FTPResultStatus RETRY
public static final FTPResult.FTPResultStatus NOT_YET_STARTED
public static FTPResult.FTPResultStatus[] values()
for (FTPResult.FTPResultStatus c : FTPResult.FTPResultStatus.values()) System.out.println(c);
public static FTPResult.FTPResultStatus 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 © 2010–2017. All rights reserved.