public static enum SitemapUrl.ChangeFrequency extends Enum<SitemapUrl.ChangeFrequency>
Enum Constant and Description |
---|
always |
daily |
hourly |
monthly |
never |
weekly |
yearly |
Modifier and Type | Method and Description |
---|---|
static SitemapUrl.ChangeFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SitemapUrl.ChangeFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SitemapUrl.ChangeFrequency always
public static final SitemapUrl.ChangeFrequency hourly
public static final SitemapUrl.ChangeFrequency daily
public static final SitemapUrl.ChangeFrequency weekly
public static final SitemapUrl.ChangeFrequency monthly
public static final SitemapUrl.ChangeFrequency yearly
public static final SitemapUrl.ChangeFrequency never
public static SitemapUrl.ChangeFrequency[] values()
for (SitemapUrl.ChangeFrequency c : SitemapUrl.ChangeFrequency.values()) System.out.println(c);
public static SitemapUrl.ChangeFrequency valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2012–2022 OmniFaces. All rights reserved.