public static enum CrawlIssueIssueType.IssueType extends java.lang.Enum<CrawlIssueIssueType.IssueType>
Enum Constant and Description |
---|
HTTP_ERROR
The type of issue is HTTP error.
|
IN_SITEMAP
The type of issue is URL In Sitemap.
|
NEWS_ERROR
The type of issue is News Error.
|
NOT_FOLLOWED
The type of issue is Not Followed.
|
NOT_FOUND
The type of issue is Not Found.
|
RESTRICTED_ROBOTS_TXT
The type of issue is Restricted by robots.txt.
|
TIMED_OUT
The type of issue is Timed Out.
|
UNREACHABLE
The type of issue is Unreachable.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static CrawlIssueIssueType.IssueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CrawlIssueIssueType.IssueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrawlIssueIssueType.IssueType HTTP_ERROR
public static final CrawlIssueIssueType.IssueType IN_SITEMAP
public static final CrawlIssueIssueType.IssueType NEWS_ERROR
public static final CrawlIssueIssueType.IssueType NOT_FOLLOWED
public static final CrawlIssueIssueType.IssueType NOT_FOUND
public static final CrawlIssueIssueType.IssueType RESTRICTED_ROBOTS_TXT
public static final CrawlIssueIssueType.IssueType TIMED_OUT
public static final CrawlIssueIssueType.IssueType UNREACHABLE
public static CrawlIssueIssueType.IssueType[] values()
for (CrawlIssueIssueType.IssueType c : CrawlIssueIssueType.IssueType.values()) System.out.println(c);
public static CrawlIssueIssueType.IssueType 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()