|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ContentDownloadResponse.ContentDownloadRequestStatus>
com.amazon.InApp.transaction.ContentDownloadResponse.ContentDownloadRequestStatus
public static enum ContentDownloadResponse.ContentDownloadRequestStatus
Indicates the result of a content download request initiated via
TransactionManager.initiateContentDownloadRequest(String, String)
.
Enum Constant Summary | |
---|---|
Complete
Indicates that the content download is complete. |
|
Failed
Indicates that the content download failed and you may retry. |
|
InProgress
Indicates that the content download is currently in progress. |
|
InvalidLocation
Indicates that the specified location on the filesystem is either not publicly writable or does not have capacity for the content. |
|
InvalidSku
Indicates that the provided SKU is not a real vendor SKU or does not have content associated with it. |
Method Summary | |
---|---|
static ContentDownloadResponse.ContentDownloadRequestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ContentDownloadResponse.ContentDownloadRequestStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 ContentDownloadResponse.ContentDownloadRequestStatus InProgress
public static final ContentDownloadResponse.ContentDownloadRequestStatus Complete
public static final ContentDownloadResponse.ContentDownloadRequestStatus Failed
public static final ContentDownloadResponse.ContentDownloadRequestStatus InvalidLocation
public static final ContentDownloadResponse.ContentDownloadRequestStatus InvalidSku
Method Detail |
---|
public static ContentDownloadResponse.ContentDownloadRequestStatus[] values()
for (ContentDownloadResponse.ContentDownloadRequestStatus c : ContentDownloadResponse.ContentDownloadRequestStatus.values()) System.out.println(c);
public static ContentDownloadResponse.ContentDownloadRequestStatus 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 null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |