enum classafSitemap::SitemapFreq

sys::Obj
  sys::Enum
    afSitemap::SitemapFreq

@Serializable { simple=true }

Describes how frequently the page is likely to change. Note that the value of this tag is considered a hint and not a command.

@see http://www.sitemaps.org/protocol.html#changefreqdef

always

Source

const static SitemapFreq always := ...

Use to describe documents that change each time they are accessed

daily

Source

const static SitemapFreq daily := ...

fromStr

Source

static new fromStr(Str name, Bool checked := true)

Return the SitemapFreq instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

hourly

Source

const static SitemapFreq hourly := ...

monthly

Source

const static SitemapFreq monthly := ...

never

Source

const static SitemapFreq never := ...

Use to describe archived URLs

vals

Source

const static SitemapFreq[] vals := ...

List of SitemapFreq values indexed by ordinal

weekly

Source

const static SitemapFreq weekly := ...

yearly

Source

const static SitemapFreq yearly := ...