public static enum MediaHttpUploader.UploadState extends java.lang.Enum<MediaHttpUploader.UploadState>
| Enum Constant and Description |
|---|
INITIATION_COMPLETE
Set after the initiation request completes.
|
INITIATION_STARTED
Set before the initiation request is sent.
|
MEDIA_COMPLETE
Set after the complete media file is successfully uploaded.
|
MEDIA_IN_PROGRESS
Set after a media file chunk is uploaded.
|
NOT_STARTED
The upload process has not started yet.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaHttpUploader.UploadState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaHttpUploader.UploadState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaHttpUploader.UploadState NOT_STARTED
public static final MediaHttpUploader.UploadState INITIATION_STARTED
public static final MediaHttpUploader.UploadState INITIATION_COMPLETE
public static final MediaHttpUploader.UploadState MEDIA_IN_PROGRESS
public static final MediaHttpUploader.UploadState MEDIA_COMPLETE
public static MediaHttpUploader.UploadState[] values()
for (MediaHttpUploader.UploadState c : MediaHttpUploader.UploadState.values()) System.out.println(c);
public static MediaHttpUploader.UploadState 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 nullCopyright © 2010-2019 Google. All Rights Reserved.