public static final enum

Categories.Fixed

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gdata.model.atompub.Categories.Fixed

Class Overview

Indicates whether the list of categories is a fixed or an open set.

Summary

Enum Values
Categories.Fixed  NO  Is not fixed. 
Categories.Fixed  YES  Is fixed. 
Fields
private static final Map<String, Categories.Fixed> VALUE_MAP
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static Categories.Fixed fromString(String value)
Convert from a string representation of Fixed to an instance.
String toString()
Returns the string representation of this instance, suitable for use in output.
static Categories.Fixed valueOf(String name)
final static Fixed[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Categories.Fixed NO

Is not fixed.

public static final Categories.Fixed YES

Is fixed.

Fields

private static final Map<String, Categories.Fixed> VALUE_MAP

Public Methods

public static Categories.Fixed fromString (String value)

Convert from a string representation of Fixed 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.

public String toString ()

Returns the string representation of this instance, suitable for use in output. This is a lowercase version of the name.

public static Categories.Fixed valueOf (String name)

Parameters
name

public static final Fixed[] values ()