public static enum TransferTicket.Status extends Enum<TransferTicket.Status>
| Enum Constant and Description |
|---|
ERROR |
PENDING |
PLUGIN_EXECUTION |
STOPPED |
SUCCESS |
TRANSFERRING |
WAITING |
| Modifier and Type | Method and Description |
|---|---|
static TransferTicket.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferTicket.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferTicket.Status PENDING
public static final TransferTicket.Status WAITING
public static final TransferTicket.Status TRANSFERRING
public static final TransferTicket.Status SUCCESS
public static final TransferTicket.Status ERROR
public static final TransferTicket.Status STOPPED
public static final TransferTicket.Status PLUGIN_EXECUTION
public static TransferTicket.Status[] values()
for (TransferTicket.Status c : TransferTicket.Status.values()) System.out.println(c);
public static TransferTicket.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 © 2019. All Rights Reserved.