public static enum CmsAppView.CacheStatus extends java.lang.Enum<CmsAppView.CacheStatus>
Enum Constant and Description |
---|
cache
Cache view.
|
cacheOnce
Cache view one time only.
|
noCache
Don't cache view.
|
Modifier and Type | Method and Description |
---|---|
static CmsAppView.CacheStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsAppView.CacheStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsAppView.CacheStatus cache
public static final CmsAppView.CacheStatus cacheOnce
public static final CmsAppView.CacheStatus noCache
public static CmsAppView.CacheStatus[] values()
for (CmsAppView.CacheStatus c : CmsAppView.CacheStatus.values()) System.out.println(c);
public static CmsAppView.CacheStatus 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 null