Package crawlercommons.sitemaps
Enum AbstractSiteMap.SitemapType
- java.lang.Object
- 
- java.lang.Enum<AbstractSiteMap.SitemapType>
- 
- crawlercommons.sitemaps.AbstractSiteMap.SitemapType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AbstractSiteMap.SitemapType>
 - Enclosing class:
- AbstractSiteMap
 
 public static enum AbstractSiteMap.SitemapType extends Enum<AbstractSiteMap.SitemapType> Various Sitemap types
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractSiteMap.SitemapTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractSiteMap.SitemapType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INDEXpublic static final AbstractSiteMap.SitemapType INDEX 
 - 
XMLpublic static final AbstractSiteMap.SitemapType XML 
 - 
ATOMpublic static final AbstractSiteMap.SitemapType ATOM 
 - 
RSSpublic static final AbstractSiteMap.SitemapType RSS 
 - 
TEXTpublic static final AbstractSiteMap.SitemapType TEXT 
 
- 
 - 
Method Detail- 
valuespublic static AbstractSiteMap.SitemapType[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractSiteMap.SitemapType c : AbstractSiteMap.SitemapType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AbstractSiteMap.SitemapType valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-