com.google.gdata.model.atompub
Enum Draft.Value

java.lang.Object
  extended by java.lang.Enum<Draft.Value>
      extended by com.google.gdata.model.atompub.Draft.Value
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Draft.Value>
Enclosing class:
Draft

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

Value.


Enum Constant Summary
NO
          Is not a draft.
YES
          Is a draft.
 
Method Summary
static Draft.Value fromString(java.lang.String value)
          Convert from a string representation of Value to an instance.
 java.lang.String toString()
          Returns the string representation of this instance, suitable for use in output.
static Draft.Value valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Draft.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
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO

public static final Draft.Value NO
Is not a draft.


YES

public static final Draft.Value YES
Is a draft.

Method Detail

values

public static Draft.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 (Draft.Value c : Draft.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 Draft.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

toString

public java.lang.String toString()
Returns the string representation of this instance, suitable for use in output. This is a lowercase version of the name.

Overrides:
toString in class java.lang.Enum<Draft.Value>

fromString

public static Draft.Value fromString(java.lang.String value)
Convert from a string representation of Value to an instance. Unlike valueOf(String) this method will return null if an enum for the given value does not exist.

Parameters:
value - the string representation to look up.
Returns:
an instance if one matched the given string, or null if none was found.