public static enum FileTransfer.Status extends Enum<FileTransfer.Status>
| Enum Constant and Description |
|---|
CANCELED |
COMPLETED |
FAILED |
IN_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static FileTransfer.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileTransfer.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileTransfer.Status CANCELED
public static final FileTransfer.Status COMPLETED
public static final FileTransfer.Status FAILED
public static final FileTransfer.Status IN_PROGRESS
public static FileTransfer.Status[] values()
for (FileTransfer.Status c : FileTransfer.Status.values()) System.out.println(c);
public static FileTransfer.Status 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 © 2014–2015 XMPP.rocks. All rights reserved.