public static final enum

GmAttributes.GmAttribute.Importance

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.api.gbase.client.GmAttributes.GmAttribute.Importance

Class Overview

Enumeration defining the importance levels that an attribute can have.

Summary

Enum Values
GmAttributes.GmAttribute.Importance  DEPRECATED  The attribute is deprecated and should not be used when creating new items. 
GmAttributes.GmAttribute.Importance  OPTIONAL  The attribute usually provides behavioral or other meta information for the item it belongs to. 
GmAttributes.GmAttribute.Importance  RECOMMENDED  The attribute is important for providing good quality for an item, but the item is meaningful even if this attribute is not specified. 
GmAttributes.GmAttribute.Importance  REQUIRED  The attribute is very important in defining the characteristics of an item. 
Fields
private final String xmlValue The string defining this instance in an Xml document.
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static GmAttributes.GmAttribute.Importance valueOf(String name)
final static Importance[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final GmAttributes.GmAttribute.Importance DEPRECATED

The attribute is deprecated and should not be used when creating new items.

public static final GmAttributes.GmAttribute.Importance OPTIONAL

The attribute usually provides behavioral or other meta information for the item it belongs to. This information is not very important for direct attribute searches, but can affect where and when an attribute is shown.

public static final GmAttributes.GmAttribute.Importance RECOMMENDED

The attribute is important for providing good quality for an item, but the item is meaningful even if this attribute is not specified. Providing a value for a recommended attribute increases the chances of showing the item in a Google search.

public static final GmAttributes.GmAttribute.Importance REQUIRED

The attribute is very important in defining the characteristics of an item. In the future, the presence of the required attributes might be checked for the item types defined by Google.

Fields

private final String xmlValue

The string defining this instance in an Xml document.

Public Methods

public static GmAttributes.GmAttribute.Importance valueOf (String name)

Parameters
name

public static final Importance[] values ()