public final enum

CrawlRate

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gdata.data.webmastertools.CrawlRate

Class Overview

CrawlRate is an enumerated type that indicates the desired crawl rate to use for a concrete site. Not all rates may be allowed for a given site.

Summary

Enum Values
CrawlRate  FASTER   
CrawlRate  FASTEST   
CrawlRate  NORMAL   
CrawlRate  SLOWER   
CrawlRate  SLOWEST   
Fields
private String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static CrawlRate fromString(String value)
Parse a string and return a crawl rate.
static CrawlRate getDefault()
Returns the default CrawlRate value.
String toString()
Returns the string representation of the CrawlRate.
static CrawlRate valueOf(String name)
final static CrawlRate[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final CrawlRate FASTER

public static final CrawlRate FASTEST

public static final CrawlRate NORMAL

public static final CrawlRate SLOWER

public static final CrawlRate SLOWEST

Fields

private String value

Public Methods

public static CrawlRate fromString (String value)

Parse a string and return a crawl rate.

Parameters
value A string representing a crawl rate.
Returns
  • a CrawlRate if the parameter can be successfully parsed.
Throws
IllegalArgumentException if the parameter is not a valid CrawlRate string.

public static CrawlRate getDefault ()

Returns the default CrawlRate value.

Returns
  • default CrawlRate value.

public String toString ()

Returns the string representation of the CrawlRate.

public static CrawlRate valueOf (String name)

Parameters
name

public static final CrawlRate[] values ()