com.google.gdata.data.docs
Enum ArchiveStatus.Value

java.lang.Object
  extended by java.lang.Enum<ArchiveStatus.Value>
      extended by com.google.gdata.data.docs.ArchiveStatus.Value
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ArchiveStatus.Value>
Enclosing class:
ArchiveStatus

public static enum ArchiveStatus.Value
extends java.lang.Enum<ArchiveStatus.Value>

Value.


Enum Constant Summary
ABORTED
          Aborted archive status.
ARCHIVING
          Archiving archive status.
EXPIRED
          Expired archive status.
FINISHED
          Finished archive status.
FLATTENING
          Flattening archive status.
QUEUED
          Queued archive status.
 
Method Summary
static ArchiveStatus.Value valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ArchiveStatus.Value[] 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

ABORTED

public static final ArchiveStatus.Value ABORTED
Aborted archive status.


ARCHIVING

public static final ArchiveStatus.Value ARCHIVING
Archiving archive status.


EXPIRED

public static final ArchiveStatus.Value EXPIRED
Expired archive status.


FINISHED

public static final ArchiveStatus.Value FINISHED
Finished archive status.


FLATTENING

public static final ArchiveStatus.Value FLATTENING
Flattening archive status.


QUEUED

public static final ArchiveStatus.Value QUEUED
Queued archive status.

Method Detail

values

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

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

valueOf

public static ArchiveStatus.Value valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null