com.google.api.client.googleapis
Enum MediaHttpUploader.UploadState

java.lang.Object
  extended by java.lang.Enum<MediaHttpUploader.UploadState>
      extended by com.google.api.client.googleapis.MediaHttpUploader.UploadState
All Implemented Interfaces:
Serializable, Comparable<MediaHttpUploader.UploadState>
Enclosing class:
MediaHttpUploader

public static enum MediaHttpUploader.UploadState
extends Enum<MediaHttpUploader.UploadState>

Upload state associated with the Media HTTP uploader.


Enum Constant Summary
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.
 
Method Summary
static MediaHttpUploader.UploadState valueOf(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.
 
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

NOT_STARTED

public static final MediaHttpUploader.UploadState NOT_STARTED
The upload process has not started yet.


INITIATION_STARTED

public static final MediaHttpUploader.UploadState INITIATION_STARTED
Set before the initiation request is sent.


INITIATION_COMPLETE

public static final MediaHttpUploader.UploadState INITIATION_COMPLETE
Set after the initiation request completes.


MEDIA_IN_PROGRESS

public static final MediaHttpUploader.UploadState MEDIA_IN_PROGRESS
Set after a media file chunk is uploaded.


MEDIA_COMPLETE

public static final MediaHttpUploader.UploadState MEDIA_COMPLETE
Set after the complete media file is successfully uploaded.

Method Detail

values

public static MediaHttpUploader.UploadState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MediaHttpUploader.UploadState c : MediaHttpUploader.UploadState.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MediaHttpUploader.UploadState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010-2012 Google. All Rights Reserved.