|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Categories.Fixed>
com.google.gdata.model.atompub.Categories.Fixed
public static enum Categories.Fixed
Indicates whether the list of categories is a fixed or an open set.
Enum Constant Summary | |
---|---|
NO
Is not fixed. |
|
YES
Is fixed. |
Method Summary | |
---|---|
static Categories.Fixed |
fromString(java.lang.String value)
Convert from a string representation of Fixed to an instance. |
java.lang.String |
toString()
Returns the string representation of this instance, suitable for use in output. |
static Categories.Fixed |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Categories.Fixed[] |
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 |
---|
public static final Categories.Fixed NO
public static final Categories.Fixed YES
Method Detail |
---|
public static Categories.Fixed[] values()
for (Categories.Fixed c : Categories.Fixed.values()) System.out.println(c);
public static Categories.Fixed 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Categories.Fixed>
public static Categories.Fixed fromString(java.lang.String value)
valueOf(String)
this method will return null if an enum for the
given value does not exist.
value
- the string representation to look up.
null
if
none was found.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |