public static enum CrawlIssueCrawlType.CrawlType extends java.lang.Enum<CrawlIssueCrawlType.CrawlType>
Enum Constant and Description |
---|
MOBILE_CHTML_CRAWL
The type of crawl is Mobile, CHTML.
|
MOBILE_OPERATOR_CRAWL
The type of crawl is Mobile, Operator.
|
MOBILE_XHTML_WML_CRAWL
The type of crawl is Mobile, XHTML / WML.
|
NEWS_CRAWL
The type of crawl is News.
|
WEB_CRAWL
The type of crawl is Web.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static CrawlIssueCrawlType.CrawlType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CrawlIssueCrawlType.CrawlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrawlIssueCrawlType.CrawlType MOBILE_CHTML_CRAWL
public static final CrawlIssueCrawlType.CrawlType MOBILE_OPERATOR_CRAWL
public static final CrawlIssueCrawlType.CrawlType MOBILE_XHTML_WML_CRAWL
public static final CrawlIssueCrawlType.CrawlType NEWS_CRAWL
public static final CrawlIssueCrawlType.CrawlType WEB_CRAWL
public static CrawlIssueCrawlType.CrawlType[] values()
for (CrawlIssueCrawlType.CrawlType c : CrawlIssueCrawlType.CrawlType.values()) System.out.println(c);
public static CrawlIssueCrawlType.CrawlType 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toValue()