public static final enum

GmPublishingPriority.Value

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.api.gbase.client.GmPublishingPriority.Value

Class Overview

Possible values for the indexing element.

Summary

Enum Values
GmPublishingPriority.Value  HIGH  The item has a high priority for getting published. 
GmPublishingPriority.Value  LOW  The item has a low priority for getting published. 
Fields
private final String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static GmPublishingPriority.Value getByText(String textValue)
Returns the priority value based on the textValue parameter, or null if no such value exists.
String getTextValue()
Returns the text value, as represented in the entry.
static GmPublishingPriority.Value valueOf(String name)
final static Value[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final GmPublishingPriority.Value HIGH

The item has a high priority for getting published. Using this value should result in the item getting published (available for search) in a very short time (less than a minute, most of the time).

public static final GmPublishingPriority.Value LOW

The item has a low priority for getting published. Using this value should result in the item getting published (available for search) in less than a day.

Fields

private final String value

Public Methods

public static GmPublishingPriority.Value getByText (String textValue)

Returns the priority value based on the textValue parameter, or null if no such value exists.

Parameters
textValue Text representation of the value
Returns
  • the priority value, or null if not found

public String getTextValue ()

Returns the text value, as represented in the entry.

public static GmPublishingPriority.Value valueOf (String name)

Parameters
name

public static final Value[] values ()