public static enum TransferState.Event extends java.lang.Enum<TransferState.Event>
| Enum Constant and Description | 
|---|
PREPARE_COMPLETE
The prepare stage has completed. 
 | 
PREPARE_STARTING
The prepare stage is about to start. 
 | 
TRANSFER_COMPLETE
The transfer is complete 
 | 
TRANSFER_FAILED
The prepare or transfer has failed (or been cancelled). 
 | 
TRANSFER_STARTING
The transfer stage is underway. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TransferState.Event | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static TransferState.Event[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TransferState.Event PREPARE_STARTING
public static final TransferState.Event PREPARE_COMPLETE
public static final TransferState.Event TRANSFER_STARTING
public static final TransferState.Event TRANSFER_COMPLETE
public static final TransferState.Event TRANSFER_FAILED
public static TransferState.Event[] values()
for (TransferState.Event c : TransferState.Event.values()) System.out.println(c);
public static TransferState.Event valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null