public static enum FileTransferFeature.State extends Enum<FileTransferFeature.State>
| Enum Constant and Description |
|---|
active |
connecting |
error |
finished |
negotiating |
| Modifier and Type | Method and Description |
|---|---|
static FileTransferFeature.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileTransferFeature.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileTransferFeature.State active
public static final FileTransferFeature.State connecting
public static final FileTransferFeature.State error
public static final FileTransferFeature.State finished
public static final FileTransferFeature.State negotiating
public static FileTransferFeature.State[] values()
for (FileTransferFeature.State c : FileTransferFeature.State.values()) System.out.println(c);
public static FileTransferFeature.State 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 © 2016. All rights reserved.