com.google.api.client.googleapis.media
Enum MediaHttpDownloader.DownloadState

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

public static enum MediaHttpDownloader.DownloadState
extends Enum<MediaHttpDownloader.DownloadState>

Download state associated with the Media HTTP downloader.


Enum Constant Summary
MEDIA_COMPLETE
          Set after the complete media file is successfully downloaded.
MEDIA_IN_PROGRESS
          Set after a media file chunk is downloaded.
NOT_STARTED
          The download process has not started yet.
 
Method Summary
static MediaHttpDownloader.DownloadState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MediaHttpDownloader.DownloadState[] 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 MediaHttpDownloader.DownloadState NOT_STARTED
The download process has not started yet.


MEDIA_IN_PROGRESS

public static final MediaHttpDownloader.DownloadState MEDIA_IN_PROGRESS
Set after a media file chunk is downloaded.


MEDIA_COMPLETE

public static final MediaHttpDownloader.DownloadState MEDIA_COMPLETE
Set after the complete media file is successfully downloaded.

Method Detail

values

public static MediaHttpDownloader.DownloadState[] 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 (MediaHttpDownloader.DownloadState c : MediaHttpDownloader.DownloadState.values())
    System.out.println(c);

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

valueOf

public static MediaHttpDownloader.DownloadState 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.