public static enum SiteMapItem.ChangeFreq extends Enum<SiteMapItem.ChangeFreq>
Enum Constant and Description |
---|
always |
daily |
hourly |
monthly |
never |
weekly |
yearly |
Modifier and Type | Method and Description |
---|---|
static SiteMapItem.ChangeFreq |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SiteMapItem.ChangeFreq[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SiteMapItem.ChangeFreq always
public static final SiteMapItem.ChangeFreq hourly
public static final SiteMapItem.ChangeFreq daily
public static final SiteMapItem.ChangeFreq weekly
public static final SiteMapItem.ChangeFreq monthly
public static final SiteMapItem.ChangeFreq yearly
public static final SiteMapItem.ChangeFreq never
public static SiteMapItem.ChangeFreq[] values()
for (SiteMapItem.ChangeFreq c : SiteMapItem.ChangeFreq.values()) System.out.println(c);
public static SiteMapItem.ChangeFreq 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 © 2018. All rights reserved.