|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Transfer.STATUS>
com.skype.api.Transfer.STATUS
public static enum Transfer.STATUS
Recognized values for the P_STATUS property. Reflects current state of this Transfer.
| Enum Constant Summary | |
|---|---|
CANCELLED
Local side (either sender or receiver) has canceled the transfer. |
|
CANCELLED_BY_REMOTE
Remote side (either sender or receiver) has canceled the transfer. |
|
COMPLETED
File transfer has completed. |
|
CONNECTING
A temporary state that transitions either into TRANSFERRING (relayed or direct) or to FAILED. |
|
FAILED
File transfer has failed. |
|
NEW
The file has either not been posted (sent) (OUTGOING), or not accepted (received) (INCOMING). |
|
OFFER_FROM_OTHER_INSTANCE
Outgoing transfer object from another instance of the same account as current local login, running on another system. |
|
PAUSED
The local user (either the sender or a receiver) has paused the transfer. |
|
PLACEHOLDER
Transfer whose existence has been hinted by corresponding chat message, but which is yet to arrive. |
|
REMOTELY_PAUSED
A remote user has paused the transfer. |
|
TRANSFERRING
The transfer has been accepted and file data is being sent/received. |
|
TRANSFERRING_OVER_RELAY
The transfer has been accepted and file data is being sent/received but is going over at least one relay. |
|
WAITING_FOR_ACCEPT
The files have been posted but the recipient has not yet accepted (or has declined) the transfer. |
|
| Method Summary | |
|---|---|
static Transfer.STATUS |
fromString(java.lang.String s)
|
static Transfer.STATUS |
get(int code)
|
int |
getId()
|
static Transfer.STATUS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Transfer.STATUS[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Transfer.STATUS NEW
public static final Transfer.STATUS CONNECTING
public static final Transfer.STATUS WAITING_FOR_ACCEPT
public static final Transfer.STATUS TRANSFERRING
public static final Transfer.STATUS TRANSFERRING_OVER_RELAY
public static final Transfer.STATUS PAUSED
public static final Transfer.STATUS REMOTELY_PAUSED
public static final Transfer.STATUS CANCELLED
public static final Transfer.STATUS COMPLETED
public static final Transfer.STATUS FAILED
public static final Transfer.STATUS PLACEHOLDER
public static final Transfer.STATUS OFFER_FROM_OTHER_INSTANCE
public static final Transfer.STATUS CANCELLED_BY_REMOTE
| Method Detail |
|---|
public static Transfer.STATUS[] values()
for (Transfer.STATUS c : Transfer.STATUS.values()) System.out.println(c);
public static Transfer.STATUS 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 name
java.lang.NullPointerException - if the argument is nullpublic int getId()
public static Transfer.STATUS get(int code)
public static Transfer.STATUS fromString(java.lang.String s)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||